Skip to content

Commit

Permalink
Explicitly run macOS 14 SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikBucher12 committed Jan 12, 2024
1 parent a5c0567 commit 4f1dfd5
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ on:
jobs:
build:
runs-on: macos-13
env:
SDK_VERSION: 'macosx14.0'
steps:
- uses: actions/checkout@v3
- name: Select Xcode version
Expand All @@ -21,8 +23,10 @@ jobs:
swift-version: "5.8"
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.2'
xcode-version: '15.1'
- name: Build
run: swift build -v
run: |
SDKROOT=$SDK_VERSION swift build -v
- name: Run tests
run: swift test -v
run: |
SDKROOT=$SDK_VERSION swift test -v

0 comments on commit 4f1dfd5

Please sign in to comment.