Skip to content

Commit

Permalink
ci: use separate coverage artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Arusekk committed Jan 3, 2024
1 parent 65e6740 commit bd74cd4
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 @@ -178,18 +178,19 @@ jobs:
pwn libcdb hash b229d1da1e161f95e839cf90cded5f719e5de308
- name: Build source and wheel distributions
if: matrix.python_version > '2.7'
if: matrix.python_version != '2.7'
run: |
python -m build
- uses: actions/upload-artifact@v4
if: matrix.python_version != '2.7'
with:
name: packages
path: dist/

- uses: actions/upload-artifact@v4
with:
name: coverage
name: coverage-${{ matrix.python_version }}
path: .coverage*


Expand All @@ -201,9 +202,9 @@ jobs:
with:
fetch-depth: 20

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: coverage
name: coverage-*
path: .

- name: Install coveralls
Expand Down Expand Up @@ -243,7 +244,7 @@ jobs:
needs: test
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: packages
path: dist
Expand Down

0 comments on commit bd74cd4

Please sign in to comment.