Skip to content

Commit 62bb317

Browse files
authored
ci: Include hidden files in artifact build (#175)
* ci: Bump download-artifact from v3 to v4 * ci: Fix coverage data upload
1 parent 041d889 commit 62bb317

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ jobs:
4141
- name: Upload coverage data
4242
uses: actions/upload-artifact@v4
4343
with:
44-
name: coverage-data
44+
name: coverage-data-${{ matrix.python-version }}
45+
include-hidden-files: true
4546
path: '.coverage.*'
4647

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

6162
- name: Download data
62-
uses: actions/download-artifact@v3
63+
uses: actions/download-artifact@v4
6364
with:
64-
name: coverage-data
65+
pattern: coverage-data-*
66+
merge-multiple: true
6567

6668
- name: Combine coverage
6769
run: |

0 commit comments

Comments
 (0)