Skip to content

Commit

Permalink
fix(tests): Missing artifacts (include-hidden-files) (#699)
Browse files Browse the repository at this point in the history
`upload-artifact` updated behavior: Hidden Files will be excluded by
default
actions/upload-artifact#602

Need to include 
```yaml
include-hidden-files: true
```
  • Loading branch information
Tranquility2 authored Sep 8, 2024
1 parent f1665f3 commit 8f1165d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: "coverage-artifact-${{ matrix.python-version}}"
include-hidden-files: true
path: ".coverage.*"
retention-days: 1
- name: Run doctests
Expand Down

0 comments on commit 8f1165d

Please sign in to comment.