Skip to content

Commit

Permalink
fix: upload code coverage after release
Browse files Browse the repository at this point in the history
Hoping to solve this error: https://docs.codecov.com/docs/error-reference#missing-base-report

In the pull request codecov comment.
  • Loading branch information
stdavis committed May 8, 2024
1 parent a2a0455 commit b32d3ca
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,12 @@ jobs:

- name: 🚀 Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

- name: 🧪 Run tests
run: pytest

- name: ⬆️ Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./cov.xml

0 comments on commit b32d3ca

Please sign in to comment.