Skip to content

Commit

Permalink
GHA: Build on Xcode 15 and 16
Browse files Browse the repository at this point in the history
Will it work?
  • Loading branch information
helje5 committed Nov 1, 2024
1 parent 5efb591 commit 706394b
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,30 @@ on:
pull_request:

jobs:
nextstep:
xcode15:
runs-on: macos-13
steps:
- name: Select latest available Xcode
uses: maxim-lobanov/setup-xcode@v1
uses: maxim-lobanov/setup-xcode@v1.5.1
with:
xcode-version: '15.2.0'
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Build Swift Debug Package
run: swift build -c debug
- name: Build Swift Release Package
run: swift build -c release
- name: Run Tests
run: swift test
xcode16:
runs-on: macos-latest
steps:
- name: Select latest available Xcode
uses: maxim-lobanov/[email protected]
with:
xcode-version: latest
- name: Checkout Repository
uses: actions/checkout@v4
- name: Build Swift Debug Package
run: swift build -c debug
- name: Build Swift Release Package
Expand Down

0 comments on commit 706394b

Please sign in to comment.