Skip to content

Commit

Permalink
fix upload
Browse files Browse the repository at this point in the history
  • Loading branch information
MateoLostanlen committed Apr 22, 2024
1 parent ca2d0a4 commit 52487fc
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,18 @@ jobs:
needs: pytest
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
- name: Download coverage artifact
uses: actions/download-artifact@v2
with:
name: coverage-main
path: . # Downloads the artifact to the current working directory
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v2 # Updated to use version 2
with:
file: ./coverage.xml # Explicitly specifying the coverage report file
flags: unittests
fail_ci_if_error: true


docs:
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 52487fc

Please sign in to comment.