Skip to content

Commit

Permalink
Fix Codecov workflow
Browse files Browse the repository at this point in the history
Was failing intermittently as Codecov hit their rate limit; we have to
tell it to use our token instead.
  • Loading branch information
clenk committed Apr 9, 2024
1 parent 440e15d commit d754722
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/python-ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
run: |
tox
- name: Upload coverage information to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v4.3.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)

0 comments on commit d754722

Please sign in to comment.