Skip to content

Commit 67f4b5b

Browse files
committed
Adapt to changes in v4.4 of actions/upload-artifact
actions/upload-artifact added in v4.4 a [breaking change](https://github.com/actions/upload-artifact/releases/tag/v4.4.0) by excluding hidden files by default. Unfortunately all coverage files are hidden files so the aggregation of coverage data failed.
1 parent f87b3ac commit 67f4b5b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ jobs:
4949
- name: Upload coverage data
5050
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874
5151
with:
52+
include-hidden-files: true
5253
name: coverage-data-${{ matrix.python-version }}
5354
path: .coverage.*
5455

0 commit comments

Comments
 (0)