Skip to content

Commit b675789

Browse files
committed
Swift 6.1
1 parent 6b0dc95 commit b675789

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

.github/workflows/build.yml

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ on:
66
workflow_dispatch:
77

88
jobs:
9-
xcode_16:
9+
xcode_16_3:
1010
runs-on: macos-15
11+
env:
12+
DEVELOPER_DIR: /Applications/Xcode_16.3.app/Contents/Developer
1113
steps:
1214
- name: Checkout
1315
uses: actions/checkout@v4
@@ -34,6 +36,20 @@ jobs:
3436
junit: result-swift-testing.xml
3537
coverage: .build/debug/codecov/KeyValueCoder.json
3638

39+
xcode_16_2:
40+
runs-on: macos-15
41+
env:
42+
DEVELOPER_DIR: /Applications/Xcode_16.2.app/Contents/Developer
43+
steps:
44+
- name: Checkout
45+
uses: actions/checkout@v4
46+
- name: Version
47+
run: swift --version
48+
- name: Build
49+
run: swift build --build-tests
50+
- name: Test
51+
run: swift test --skip-build
52+
3753
xcode_15_4:
3854
runs-on: macos-14
3955
env:
@@ -100,3 +116,16 @@ jobs:
100116
run: swift build --build-tests
101117
- name: Test
102118
run: swift test --skip-build
119+
120+
linux_swift_6_1:
121+
runs-on: ubuntu-latest
122+
container: swift:6.1
123+
steps:
124+
- name: Checkout
125+
uses: actions/checkout@v4
126+
- name: Version
127+
run: swift --version
128+
- name: Build
129+
run: swift build --build-tests
130+
- name: Test
131+
run: swift test --skip-build

0 commit comments

Comments
 (0)