Skip to content
Snippets Groups Projects
Commit a2131d55 authored by Rambaud Pierrick's avatar Rambaud Pierrick
Browse files

fix: push the coverage report to codecov

parent 4ad15118
No related branches found
No related tags found
No related merge requests found
......@@ -67,3 +67,22 @@ jobs:
run: pip install nox
- name: Test with pytest
run: nox -s ci_test
- uses: actions/upload-artifact@v4
if: ${{ matrix.python-version == '3.10' }}
with:
name: coverage
path: coverage.xml
coverage:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: coverage
path: coverage.xml
- name: codecov
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment