File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -34,10 +34,18 @@ jobs:
34
34
xcode-version : ${{ matrix.xcode-version }}
35
35
- name : Swift version
36
36
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
38
46
run : |
39
47
xcodebuild test \
40
- -scheme OpenSwiftUITests \
48
+ -scheme OpenSwiftUI \
41
49
-configuration Debug \
42
50
-destination "platform=iOS Simulator,OS=${{ matrix.ios-version }},name=${{ matrix.ios-simulator-name }}" \
43
51
-skipMacroValidation \
You can’t perform that action at this time.
0 commit comments