Skip to content

Commit

Permalink
πŸ’š ci: fix windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ljnsn committed Mar 6, 2024
1 parent de04b8b commit 5641171
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ jobs:
- name: Test
run: python -m pdm run test
- name: Archive code coverage results
if: ${{ matrix.platform }} == 'ubuntu-latest'
uses: actions/upload-artifact@v3
with:
name: coverage-${{ matrix.package }}-${{ matrix.python-version }}
Expand All @@ -79,7 +78,7 @@ jobs:
uses: actions/download-artifact@v3
- name: Combine reports
run: |
coverage combine $(ls **/.coverage)
coverage combine $(ls ./**/.coverage)
coverage report
coverage xml
- name: Upload coverage
Expand Down

0 comments on commit 5641171

Please sign in to comment.