File tree Expand file tree Collapse file tree 1 file changed +29
-2
lines changed Expand file tree Collapse file tree 1 file changed +29
-2
lines changed Original file line number Diff line number Diff line change 6
6
workflow_dispatch :
7
7
8
8
jobs :
9
- xcode_16 :
9
+ xcode_16_3 :
10
10
runs-on : macos-15
11
11
env :
12
- DEVELOPER_DIR : /Applications/Xcode_16.2 .app/Contents/Developer
12
+ DEVELOPER_DIR : /Applications/Xcode_16.3 .app/Contents/Developer
13
13
steps :
14
14
- name : Checkout
15
15
uses : actions/checkout@v4
27
27
token : ${{ secrets.CODECOV_TOKEN }}
28
28
files : ./coverage_report.lcov
29
29
30
+ xcode_16_2 :
31
+ runs-on : macos-15
32
+ env :
33
+ DEVELOPER_DIR : /Applications/Xcode_16.2.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_15_4 :
31
45
runs-on : macos-14
32
46
env :
@@ -121,6 +135,19 @@ jobs:
121
135
- name : Test
122
136
run : swift test --skip-build
123
137
138
+ linux_6_1 :
139
+ runs-on : ubuntu-latest
140
+ container : swift:6.1
141
+ steps :
142
+ - name : Checkout
143
+ uses : actions/checkout@v4
144
+ - name : Version
145
+ run : swift --version
146
+ - name : Build
147
+ run : swift build --build-tests
148
+ - name : Test
149
+ run : swift test --skip-build
150
+
124
151
android :
125
152
runs-on : ubuntu-latest
126
153
steps :
You can’t perform that action at this time.
0 commit comments