Skip to content

Commit

Permalink
ci: Include hidden files in artifact build (#175)
Browse files Browse the repository at this point in the history
* ci: Bump download-artifact from v3 to v4

* ci: Fix coverage data upload
  • Loading branch information
mrbazzan authored Jan 18, 2025
1 parent 041d889 commit 62bb317
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ jobs:
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: coverage-data
name: coverage-data-${{ matrix.python-version }}
include-hidden-files: true
path: '.coverage.*'

coverage:
Expand All @@ -59,9 +60,10 @@ jobs:
run: python -m pip install --upgrade coverage[toml]

- name: Download data
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage-data
pattern: coverage-data-*
merge-multiple: true

- name: Combine coverage
run: |
Expand Down

0 comments on commit 62bb317

Please sign in to comment.