Skip to content

Commit 1efdf38

Browse files
committed
Fix iOS CI config
1 parent 5847343 commit 1efdf38

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/ios.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,18 @@ 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 OpenSwiftUI \
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 \
40-
-scheme OpenSwiftUITests \
48+
-scheme OpenSwiftUI \
4149
-configuration Debug \
4250
-destination "platform=iOS Simulator,OS=${{ matrix.ios-version }},name=${{ matrix.ios-simulator-name }}" \
4351
-skipMacroValidation \

0 commit comments

Comments
 (0)