We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5847343 commit 47ef338Copy full SHA for 47ef338
.github/workflows/ios.yml
@@ -34,7 +34,15 @@ jobs:
34
xcode-version: ${{ matrix.xcode-version }}
35
- name: Swift version
36
run: swift --version
37
- - name: Build and run tests in debug mode
+ - 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
46
run: |
47
xcodebuild test \
48
-scheme OpenSwiftUITests \
0 commit comments