Skip to content

Commit c48ab0e

Browse files
chore: Tests execute in parallel
1 parent 09b3c37 commit c48ab0e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
3838
with:
3939
downloadUrl: https://github.com/paulofaria/test-reporter/releases/download/0.9.0/test-reporter-0.9.0-darwin-amd64
40-
coverageCommand: swift test --enable-test-discovery --enable-code-coverage
40+
coverageCommand: swift test --parallel --enable-test-discovery --enable-code-coverage
4141
coverageLocations: ${{ env.codecov_path }}:lcov-json
4242

4343
# ubuntu-latest is ubuntu-22.04 currently. Swift versions older than 5.7 don't have builds for 22.04. https://www.swift.org/download/
@@ -54,7 +54,7 @@ jobs:
5454
swift-version: ${{ matrix.swift }}
5555
- uses: actions/checkout@v3
5656
- name: Test
57-
run: swift test
57+
run: swift test --parallel
5858

5959
ubuntu-latest:
6060
name: Build ${{ matrix.swift }} on ${{ matrix.os }}
@@ -69,4 +69,4 @@ jobs:
6969
swift-version: ${{ matrix.swift }}
7070
- uses: actions/checkout@v3
7171
- name: Test
72-
run: swift test
72+
run: swift test --parallel

0 commit comments

Comments
 (0)