@@ -159,7 +159,7 @@ jobs:
159
159
- name : Test swift-algorithms
160
160
uses : skiptools/swift-android-action@main
161
161
with :
162
- run-tests : ${{ matrix.arch == '' }}
162
+ run-tests : true
163
163
package-path : swift-algorithms
164
164
installed-sdk : ${{ steps.info.outputs.sdk-id }}
165
165
installed-swift : ${{ steps.info.outputs.swift-root }}
@@ -172,8 +172,34 @@ jobs:
172
172
- name : Test swift-android-native
173
173
uses : skiptools/swift-android-action@main
174
174
with :
175
- run-tests : ${{ matrix.arch == '' }}
175
+ run-tests : true
176
176
package-path : swift-android-native
177
177
installed-sdk : ${{ steps.info.outputs.sdk-id }}
178
178
installed-swift : ${{ steps.info.outputs.swift-root }}
179
179
180
+ - name : Checkout swift-argument-parser
181
+ uses : actions/checkout@v4
182
+ with :
183
+ repository : apple/swift-argument-parser
184
+ path : swift-argument-parser
185
+ - name : Test swift-argument-parser
186
+ uses : skiptools/swift-android-action@main
187
+ with :
188
+ run-tests : true
189
+ package-path : swift-argument-parser
190
+ installed-sdk : ${{ steps.info.outputs.sdk-id }}
191
+ installed-swift : ${{ steps.info.outputs.swift-root }}
192
+
193
+ - name : Checkout swift-system
194
+ uses : actions/checkout@v4
195
+ with :
196
+ repository : apple/swift-system
197
+ path : swift-system
198
+ - name : Test swift-system
199
+ uses : skiptools/swift-android-action@main
200
+ with :
201
+ run-tests : true
202
+ package-path : swift-system
203
+ installed-sdk : ${{ steps.info.outputs.sdk-id }}
204
+ installed-swift : ${{ steps.info.outputs.swift-root }}
205
+
0 commit comments