We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9546499 commit c4b9013Copy full SHA for c4b9013
.github/workflows/python-static-analysis-and-test.yml
@@ -88,12 +88,17 @@ jobs:
88
run: |
89
tox -e begin,py-${{ matrix.pkg_mods }} -- --tb short
90
91
+ - name: ls
92
+ run: |
93
+ ls -lha ${{ runner.temp }}
94
+
95
- name: Uploading pytest files on failure
96
if: failure() # Only upload this if tox failed
97
uses: actions/upload-artifact@v4
98
with:
99
name: pytest-artifacts-${{ runner.os }}
100
path: ${{ runner.temp }}/pytest-of-*/**
101
+ retention-days: 1
102
103
- name: Upload coverage
104
0 commit comments