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 65ae7a6 commit fb968e4Copy full SHA for fb968e4
.github/workflows/blank.yml
@@ -11,8 +11,9 @@ jobs:
11
- uses: actions/checkout@v1
12
- name: Install cocoapods
13
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
+ - name: Run mac os x tests
+ run: xcodebuild -project WebLinking.xcodeproj -scheme WebLinking test -sdk macosx | xcpretty
+ - name: Run ios tests
+ run: xcodebuild -project WebLinking.xcodeproj -scheme WebLinking test -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty
+ - name: Run pod lint
19
+ run: pod lib lint --quick
0 commit comments