Skip to content

Commit 7546674

Browse files
committed
[MOB-10368] Reorganize some files
1 parent 2fd2e53 commit 7546674

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/build-and-test.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,19 @@ jobs:
1313
with:
1414
xcode-version: latest-stable
1515

16-
- name: Build and test
16+
- name: Build and test with parallel testing
1717
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]}
1926
2027
- name: CocoaPods lint
2128
run: pod lib lint
2229

2330
- 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'

0 commit comments

Comments
 (0)