Skip to content

Commit

Permalink
fix: workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sysid committed Jun 15, 2024
1 parent 89bab49 commit a918e84
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@main

- name: Set up Python
uses: actions/setup-python@v3
Expand Down Expand Up @@ -50,7 +50,9 @@ jobs:
make test-unit
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
if: contains(env.USING_COVERAGE, matrix.python-version)
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true # optional (default = false)

0 comments on commit a918e84

Please sign in to comment.