File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 1111 - uses : actions/checkout@v1
1212 - name : Install cocoapods
1313 run : gem install cocoapods
14- - name : Run a multi-line script
15- run : |
16- xcodebuild -project WebLinking.xcodeproj -scheme WebLinking test -sdk macosx | xcpretty
17- xcodebuild -project WebLinking.xcodeproj -scheme WebLinking test -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty
18- pod lib lint --quick
14+ - name : Run mac os x tests
15+ 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 && exit ${PIPESTATUS[0]}
18+ - name : Run pod lint
19+ run : pod lib lint --quick
You can’t perform that action at this time.
0 commit comments