Skip to content

Commit 1971911

Browse files
committed
Trying settings similar to swift-case-paths
1 parent 71771ed commit 1971911

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ concurrency:
1414
cancel-in-progress: true
1515

1616
jobs:
17-
macos-14:
18-
name: macOS 14 (Xcode ${{ matrix.xcode }})
19-
runs-on: macOS-14
17+
macos:
18+
name: macOS (Xcode ${{ matrix.xcode }})
19+
runs-on: macos-15
2020
strategy:
2121
matrix:
2222
xcode:
23-
- '15.4'
23+
- '16.4'
2424
steps:
2525
- uses: actions/checkout@v4
2626
- name: Select Xcode ${{ matrix.xcode }}
@@ -31,16 +31,17 @@ jobs:
3131
run: make test-platforms
3232

3333
linux:
34-
name: Ubuntu
35-
runs-on: ubuntu-latest
3634
strategy:
3735
matrix:
3836
swift:
39-
- '5.10'
37+
- '6.1'
38+
name: Ubuntu (Swift ${{ matrix.swift }})
39+
runs-on: ubuntu-latest
40+
container: swift:${{ matrix.swift }}
4041
steps:
4142
- uses: actions/checkout@v4
4243
- name: Run tests
43-
run: make test-linux SWIFT_VERSION=${{ matrix.swift }}
44+
run: swift test --parallel
4445

4546
wasm:
4647
name: Wasm
@@ -60,6 +61,10 @@ jobs:
6061
run: swift build --swift-sdk wasm32-unknown-wasi -Xlinker -z -Xlinker stack-size=$((1024 * 1024))
6162

6263
android:
64+
strategy:
65+
matrix:
66+
swift:
67+
- "6.0.2"
6368
name: Android
6469
runs-on: ubuntu-latest
6570
steps:

0 commit comments

Comments
 (0)