Skip to content

Commit

Permalink
🧪🐛 List explicit MyPy coverage.xml paths @ CI
Browse files Browse the repository at this point in the history
Apparently, the Codecov's action doesn't do globs.
  • Loading branch information
webknjaz committed Dec 15, 2023
1 parent a26ba84 commit 7394415
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/reusable-linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ jobs:
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: .tox/.tmp/.mypy/python-*/cobertura.xml
files: >-
.tox/.tmp/.mypy/python-3.12/cobertura.xml,
.tox/.tmp/.mypy/python-3.10/cobertura.xml,
.tox/.tmp/.mypy/python-3.8/cobertura.xml
flags: >-
CI-GHA,
MyPy
Expand Down

0 comments on commit 7394415

Please sign in to comment.