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 27
27
token : ${{ secrets.CODECOV_TOKEN }}
28
28
files : ./coverage_report.lcov
29
29
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
+
30
44
xcode_16_2 :
31
45
runs-on : macos-15
32
46
env :
@@ -94,6 +108,19 @@ jobs:
94
108
- name : Test
95
109
run : swift test --skip-build
96
110
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
+
97
124
linux_swift_6_1_musl :
98
125
runs-on : ubuntu-latest
99
126
container : swift:6.1.2
You can’t perform that action at this time.
0 commit comments