Skip to content

Commit 24abdf5

Browse files
committed
Fix script
1 parent 673b67b commit 24abdf5

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/ios-tests.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,23 @@ jobs:
8484
echo ""
8585
done
8686
87-
- name: Build and Test
87+
- name: Build Framework Only
8888
run: |
8989
xcodebuild build \
9090
-workspace Example/Cloudinary.xcworkspace \
91-
-scheme travis_public_scheme \
91+
-scheme Cloudinary \
9292
-destination "platform=iOS Simulator,OS=18.4,name=iPhone 16" \
9393
CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty
9494
95+
- name: Run Unit Tests
96+
run: |
97+
xcodebuild test \
98+
-workspace Example/Cloudinary.xcworkspace \
99+
-scheme Cloudinary \
100+
-destination "platform=iOS Simulator,OS=18.4,name=iPhone 16" \
101+
-only-testing:Cloudinary_Tests \
102+
CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty || true
103+
95104
- name: Notify on Failure
96105
if: failure()
97106
run: echo "Notify sdk_developers@cloudinary.com of failure"

0 commit comments

Comments
 (0)