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 fb968e4 commit 3202230Copy full SHA for 3202230
.github/workflows/blank.yml
@@ -12,8 +12,8 @@ jobs:
12
- name: Install cocoapods
13
run: gem install cocoapods
14
- name: Run mac os x tests
15
- run: xcodebuild -project WebLinking.xcodeproj -scheme WebLinking test -sdk macosx | xcpretty
+ run: xcodebuild -project WebLinking.xcodeproj -scheme WebLinking test -sdk macosx | xcpretty && exit ${PIPESTATUS[0]}
16
- name: Run ios tests
17
- run: xcodebuild -project WebLinking.xcodeproj -scheme WebLinking test -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty
+ run: xcodebuild -project WebLinking.xcodeproj -scheme WebLinking test -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty && exit ${PIPESTATUS[0]}
18
- name: Run pod lint
19
run: pod lib lint --quick
0 commit comments