We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e386bc0 commit b345804Copy full SHA for b345804
.github/workflows/tests.yml
@@ -77,12 +77,15 @@ jobs:
77
run: |
78
hatch run +python=${{ matrix.python }} sessions:run-${{ matrix.session }}
79
80
+ - name: list files
81
+ run: pwd && ls -lha
82
+
83
- name: Upload coverage data
84
if: always() && matrix.session == 'tests' && matrix.os == 'ubuntu-latest'
85
uses: "actions/upload-artifact@v4"
86
with:
87
name: coverage-data-${{ matrix.python }}-${{ matrix.os }}
- path: ".coverage.*"
88
+ path: ".coverage/*"
89
90
- name: Upload documentation
91
if: matrix.session == 'docs-build'
0 commit comments