Skip to content

Commit

Permalink
Fix the 'coverage' workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
skoolkid committed Jun 19, 2024
1 parent 14dba3d commit ed6f1b8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
Expand All @@ -26,6 +26,8 @@ jobs:
run: nose2 -C --coverage skoolkit --coverage-report xml

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: ./coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit ed6f1b8

Please sign in to comment.