Skip to content

Commit da8f629

Browse files
committed
Fix script
1 parent 6f26354 commit da8f629

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ios-tests.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,19 +71,25 @@ jobs:
7171
working-directory: Example
7272
run: pod install
7373

74+
- name: Check Cloudinary_Tests scheme destinations
75+
working-directory: Example
76+
run: |
77+
echo "Checking destinations for Cloudinary_Tests scheme:"
78+
xcodebuild -workspace Cloudinary.xcworkspace -scheme Cloudinary_Tests -showdestinations
79+
7480
- name: Build for Testing
7581
run: |
7682
xcodebuild build-for-testing \
7783
-workspace Example/Cloudinary.xcworkspace \
78-
-scheme travis_public_scheme \
84+
-scheme Cloudinary_Tests \
7985
-destination "platform=iOS Simulator,name=${{ matrix.ios_name }}" \
8086
CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty
8187
8288
- name: Run Tests
8389
run: |
8490
xcodebuild test-without-building \
8591
-workspace Example/Cloudinary.xcworkspace \
86-
-scheme travis_public_scheme \
92+
-scheme Cloudinary_Tests \
8793
-destination "platform=iOS Simulator,name=${{ matrix.ios_name }}" \
8894
CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty
8995

0 commit comments

Comments
 (0)