File tree Expand file tree Collapse file tree 1 file changed +30
-1
lines changed Expand file tree Collapse file tree 1 file changed +30
-1
lines changed Original file line number Diff line number Diff line change 66 workflow_dispatch :
77
88jobs :
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
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
You can’t perform that action at this time.
0 commit comments