Skip to content

Commit 2f38931

Browse files
committed
ci: download reporters in parallel
1 parent 805c24c commit 2f38931

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ jobs:
1212
- name: "Download coverage reporters"
1313
run: |
1414
mkdir -p ./reporter
15-
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./reporter/cc-test-reporter-linux
16-
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-darwin-amd64 > ./reporter/cc-test-reporter-darwin
17-
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-windows-amd64 > ./reporter/cc-test-reporter-windows.exe
15+
curl -sS -L \
16+
https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 -o ./reporter/cc-test-reporter-linux \
17+
https://codeclimate.com/downloads/test-reporter/test-reporter-latest-darwin-amd64 -o ./reporter/cc-test-reporter-darwin \
18+
https://codeclimate.com/downloads/test-reporter/test-reporter-latest-windows-amd64 -o ./reporter/cc-test-reporter-windows.exe
1819
- name: "Notify code climate of pending coverage upload"
1920
env:
2021
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}

0 commit comments

Comments
 (0)