File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,19 @@ jobs:
13
13
with :
14
14
xcode-version : latest-stable
15
15
16
- - name : Build and test
16
+ - name : Build and test with parallel testing
17
17
run : |
18
- xcodebuild test -project swift-sdk.xcodeproj -scheme swift-sdk -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14 Pro Max' -enableCodeCoverage YES CODE_SIGNING_REQUIRED=NO | xcpretty && exit ${PIPESTATUS[0]}
18
+ xcodebuild test -project swift-sdk.xcodeproj \
19
+ -scheme swift-sdk \
20
+ -sdk iphonesimulator \
21
+ -destination 'platform=iOS Simulator,name=iPhone 14 Pro Max' \
22
+ -enableCodeCoverage YES \
23
+ -parallel-testing-enabled YES \
24
+ -parallel-testing-worker-count 6 \
25
+ CODE_SIGNING_REQUIRED=NO | xcpretty && exit ${PIPESTATUS[0]}
19
26
20
27
- name : CocoaPods lint
21
28
run : pod lib lint
22
29
23
30
- name : Upload coverage report to codecov.io
24
- run : bash <(curl -s https://codecov.io/bash) -X gcov -J 'IterableSDK' -J 'IterableAppExtensions'
31
+ run : bash <(curl -s https://codecov.io/bash) -X gcov -J 'IterableSDK' -J 'IterableAppExtensions'
You can’t perform that action at this time.
0 commit comments