Skip to content

Commit

Permalink
Update GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
nighthawk committed Apr 3, 2024
1 parent e834ddf commit 6b3bc28
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@ on:

jobs:
build_xcode:
runs-on: macos-11
runs-on: macos-13

steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '13.0' # latest-stable
xcode-version: latest-stable
- uses: actions/checkout@v2
- name: Build TGCardVC
run: xcodebuild -workspace . -scheme TGCardViewController -destination 'platform=iOS Simulator,name=iPhone 13'
run: xcodebuild -workspace . -scheme TGCardViewController -destination 'platform=iOS Simulator,name=iPhone 14'

examples:
runs-on: macos-11
runs-on: macos-13

steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '13.0' # latest-stable
xcode-version: latest-stable
- uses: actions/checkout@v2
- name: Build Example
run: |
cd Example
xcodebuild build -scheme 'Example' -destination 'platform=iOS Simulator,name=iPhone 13'
xcodebuild build -scheme 'Example' -destination 'platform=iOS Simulator,name=iPhone 14'

0 comments on commit 6b3bc28

Please sign in to comment.