File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 2727 token : ${{ secrets.CODECOV_TOKEN }}
2828 files : ./coverage_report.lcov
2929
30+ xcode_26 :
31+ runs-on : macos-15
32+ env :
33+ DEVELOPER_DIR : /Applications/Xcode_26.0.app/Contents/Developer
34+ steps :
35+ - name : Checkout
36+ uses : actions/checkout@v4
37+ - name : Version
38+ run : swift --version
39+ - name : Build
40+ run : swift build --build-tests
41+ - name : Test
42+ run : swift test --skip-build
43+
3044 xcode_16_2 :
3145 runs-on : macos-15
3246 env :
@@ -94,6 +108,19 @@ jobs:
94108 - name : Test
95109 run : swift test --skip-build
96110
111+ linux_swift_6_2 :
112+ runs-on : ubuntu-latest
113+ container : swiftlang/swift:nightly-6.2-noble
114+ steps :
115+ - name : Checkout
116+ uses : actions/checkout@v4
117+ - name : Version
118+ run : swift --version
119+ - name : Build
120+ run : swift build --build-tests
121+ - name : Test
122+ run : swift test --skip-build
123+
97124 linux_swift_6_1_musl :
98125 runs-on : ubuntu-latest
99126 container : swift:6.1.2
You can’t perform that action at this time.
0 commit comments