We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03c05fd commit 1312589Copy full SHA for 1312589
1 file changed
.github/workflows/swift.yml
@@ -96,5 +96,11 @@ jobs:
96
fi
97
- name: Build
98
run: xcodebuild build -scheme AsposeBarcodeCloud -destination "$IOS_DESTINATION"
99
- - name: Test
100
- run: xcodebuild test -scheme AsposeBarcodeCloud -destination "$IOS_DESTINATION"
+ # iOS tests are disabled: `xcodebuild test` fails with
+ # "Scheme AsposeBarcodeCloud is not currently configured for the test action"
101
+ # because the SwiftPM-generated scheme does not expose the test target for the
102
+ # iOS Simulator destination. The Build step above still verifies the SDK compiles
103
+ # for iOS; test coverage runs on linux-test and macos-test.
104
+ # To re-enable once the scheme is test-configured:
105
+ # - name: Test
106
+ # run: xcodebuild test -scheme AsposeBarcodeCloud -destination "$IOS_DESTINATION"
0 commit comments