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 ef0427d commit e83ea09Copy full SHA for e83ea09
1 file changed
.github/workflows/swift.yml
@@ -10,17 +10,15 @@ on:
10
branches: [ "main" ]
11
12
jobs:
13
- build:
14
-
15
- runs-on: ubuntu-latest # Changed from macos-latest to ubuntu-latest
16
+ xcode:
+ runs-on: macos-15
+ env:
+ DEVELOPER_DIR: /Applications/Xcode_16.3.app/Contents/Developer
17
steps:
18
- - uses: actions/checkout@v4
19
- - name: Setup Swift
20
- uses: sersoft-gmbh/swifty-linux-action@v3
21
- with:
22
- release-version: 6.1
23
- - name: Build
24
- run: swift build -v
25
- - name: Run tests
26
- run: swift test -v
+ - uses: actions/checkout@v4
+ - name: Version
+ run: swift --version
+ - name: Build
+ run: swift build -v
+ - name: Test
+ run: swift test -v
0 commit comments