Skip to content

Commit

Permalink
ci: download reporters in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
michalc committed Aug 1, 2023
1 parent 805c24c commit 2f38931
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ jobs:
- name: "Download coverage reporters"
run: |
mkdir -p ./reporter
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./reporter/cc-test-reporter-linux
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-darwin-amd64 > ./reporter/cc-test-reporter-darwin
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-windows-amd64 > ./reporter/cc-test-reporter-windows.exe
curl -sS -L \
https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 -o ./reporter/cc-test-reporter-linux \
https://codeclimate.com/downloads/test-reporter/test-reporter-latest-darwin-amd64 -o ./reporter/cc-test-reporter-darwin \
https://codeclimate.com/downloads/test-reporter/test-reporter-latest-windows-amd64 -o ./reporter/cc-test-reporter-windows.exe
- name: "Notify code climate of pending coverage upload"
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
Expand Down

0 comments on commit 2f38931

Please sign in to comment.