Skip to content

Commit

Permalink
fix upload
Browse files Browse the repository at this point in the history
  • Loading branch information
rkoopmans committed Aug 10, 2024
1 parent 121bcf5 commit 2bb7081
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,18 +73,19 @@ jobs:
run: |
python -m pip install coverage codecov
- name: Download coverage artifacts
run: |
for version in 2.7 3.7 3.8 3.9 3.10 3.11 3.12; do
echo "Downloading coverage for Python $version"
actions/download-artifact@v4 --name coverage-$version --path ./coverage/$version
done
uses: actions/download-artifact@v4
with:
pattern: coverage-*
path: ./coverage
merge-multiple: true
- name: Combine coverage reports
run: |
ls -lash
coverage combine ./coverage
coverage report
coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
mypy:
Expand Down

0 comments on commit 2bb7081

Please sign in to comment.