Skip to content

Commit

Permalink
ci: moved coverage reporting to seperate step
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Sep 24, 2022
1 parent 5a1b141 commit 1d6d24e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ jobs:
run: |
source venv/bin/activate || source venv/Scripts/activate
make test
bash <(curl -s https://codecov.io/bash)
- name: Report coverage
shell: bash
run: |
# allow failures since codecov servers can be grumpy
bash <(curl -s https://codecov.io/bash) || true
- name: Package
shell: bash
run: |
Expand Down

0 comments on commit 1d6d24e

Please sign in to comment.