Skip to content

Commit 8279049

Browse files
committed
Merge branch 'master' of github.com:pingwinator/WebLinking.swift
2 parents f56c8a8 + 3202230 commit 8279049

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/blank.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ jobs:
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

0 commit comments

Comments
 (0)