Skip to content

Commit

Permalink
Specify os in report filename
Browse files Browse the repository at this point in the history
  • Loading branch information
tekktrik committed Feb 22, 2024
1 parent 8d5ad94 commit a8a418c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ jobs:
make test
- name: Create coverage.py XML report
run: |
coverage xml -o coverage_${{ matrix.py-version }}.xml
coverage xml -o coverage_${{ matrix.os }}_${{ matrix.py-version }}.xml
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
file: coverage_${{ matrix.py-version }}.xml
flags: "py-${{ matrix.py-version }}"
flags: "${{ matrix.os }}py-${{ matrix.py-version }}"
- name: Test packaging
run: |
python -m build

0 comments on commit a8a418c

Please sign in to comment.