Skip to content

Commit

Permalink
Check Ventura, too
Browse files Browse the repository at this point in the history
  • Loading branch information
nighthawk committed May 10, 2024
1 parent fefc7aa commit d958271
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,35 @@ on:
branches: [ main ]

jobs:
build_xcode:
build_xcode_sonoma:
runs-on: macos-14

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

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

examples:
runs-on: macos-14

steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.3 # latest-stable
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build Example
run: |
cd Example
Expand Down

0 comments on commit d958271

Please sign in to comment.