Skip to content

Commit

Permalink
Use {download,upload}-artifact v4
Browse files Browse the repository at this point in the history
  • Loading branch information
s-t-e-v-e-n-k committed Jun 5, 2024
1 parent 92758ed commit a1f9ee6
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
env:
COVERAGE_FILE: ".coverage.${{ matrix.python-version }}"
- name: Upload coverage data
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-data
path: .coverage.*
name: coverage-data-${{ matrix.python-version }}
path: .coverage.${{ matrix.python-version }}
coverage:
name: Coverage
needs: test
Expand All @@ -44,9 +44,10 @@ jobs:
python -m pip install --upgrade pip
pip install coverage
- name: Download coverage data
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage-data
pattern: coverage-data-*
merge-multiple: true
- name: Report coverage
run: |
python -m coverage combine
Expand Down

0 comments on commit a1f9ee6

Please sign in to comment.