Skip to content

Commit

Permalink
switch to codecov github action
Browse files Browse the repository at this point in the history
  • Loading branch information
albertodonato committed Apr 16, 2023
1 parent a8ec085 commit d713033
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,15 @@ jobs:

- name: Install dependencies
run: |
pip install --upgrade pip tox codecov
pip install --upgrade pip tox
- name: Test
run: |
tox -e coverage
codecov
tox -e coverage -- --cov-report xml:coverage.xml
- name: Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
env_vars: PYTHON
full_report: coverage.xml

0 comments on commit d713033

Please sign in to comment.