We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ee43d7 commit d88cf24Copy full SHA for d88cf24
.github/workflows/swift.yml
@@ -1,5 +1,7 @@
1
name: Build Package for all Platforms
2
3
+name: Build Swift Package
4
+
5
on:
6
push:
7
branches:
@@ -24,10 +26,11 @@ jobs:
24
26
- name: Checkout Repository
25
27
uses: actions/checkout@v4
28
- - name: Install Swift 6
29
+ - name: Select Latest Xcode 16
30
run: |
- brew install swift
- echo "$(brew --prefix swift)/bin" >> $GITHUB_PATH
31
+ sudo xcode-select -s /Applications/Xcode_16.app/Contents/Developer || \
32
+ sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
33
+ xcodebuild -version
34
swift --version
35
36
- name: Build Swift Package
0 commit comments