Skip to content

Commit

Permalink
Fix code coverage action
Browse files Browse the repository at this point in the history
  • Loading branch information
reiniscirpons committed May 1, 2024
1 parent 90b794e commit 7163307
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/runtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,15 @@ jobs:
sudo ln -sf /usr/bin/gcov-9 /usr/bin/gcov
export GCOV=/usr/bin/gcov-9
etc/test-code-coverage.sh test_all "[quick]"
bash <(curl -s https://codecov.io/bash)
- name: "Uploading to Codecov . . ."
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
directory: ./coverage/
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
- name: "Cleanup . . ."
run: |
rm -f coverage.info
distcheck:
timeout-minutes: 15
Expand Down

0 comments on commit 7163307

Please sign in to comment.