Skip to content

Commit 47ef338

Browse files
committed
Fix iOS CI config
1 parent 5847343 commit 47ef338

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/ios.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,15 @@ jobs:
3434
xcode-version: ${{ matrix.xcode-version }}
3535
- name: Swift version
3636
run: swift --version
37-
- name: Build and run tests in debug mode
37+
- name: Build test target in debug mode
38+
run: |
39+
xcodebuild build \
40+
-scheme OpenSwiftUITests \
41+
-configuration Debug \
42+
-destination "platform=iOS Simulator,OS=${{ matrix.ios-version }},name=${{ matrix.ios-simulator-name }}" \
43+
-skipMacroValidation \
44+
-skipPackagePluginValidation
45+
- name: Run test target in debug mode
3846
run: |
3947
xcodebuild test \
4048
-scheme OpenSwiftUITests \

0 commit comments

Comments
 (0)