Fixing debug messages about failed loads (#95) #104
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Coverage | |
on: | |
push: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
coverage: | |
if: github.repository_owner == 'arkq' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Generate Coverage Report | |
run: | | |
pip install tox | |
tox | |
- name: Upload Coverage to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: .tox/coverage.xml | |
disable_search: true |