Skip to content

Commit

Permalink
Attempt 2 to fix this, move to separate lines for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
victorquinn committed Oct 7, 2024
1 parent 0032f09 commit 1fb7496
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,13 @@ jobs:
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
run: |
./cc-test-reporter format-coverage coverage/lcov.info --input-type lcov --output coverage/codeclimate.$$$.json
./cc-test-reporter format-coverage coverage/lcov.info \
--input-type lcov \
--output coverage/codeclimate.$$$.json
- name: Upload coverage to Code Climate
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
run: |
./cc-test-reporter upload-coverage --input coverage/codeclimate.$$$.json --exit-code ${{ job.status == 'success' && 0 || 1 }}
./cc-test-reporter upload-coverage \
--input coverage/codeclimate.$$$.json

0 comments on commit 1fb7496

Please sign in to comment.