We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51d9d7c commit ea8699bCopy full SHA for ea8699b
1 file changed
.github/workflows/full_coverage.yml
@@ -191,13 +191,21 @@ jobs:
191
run: |
192
if [ -d __repo_pyspedas ]; then mv __repo_pyspedas pyspedas; fi
193
194
+ - name: Debug coverage files
195
+ if: ${{ always() }}
196
+ run: |
197
+ pwd
198
+ ls -la
199
+ find . -maxdepth 2 -name '.coverage*' -ls
200
+
201
- name: Upload raw coverage data
202
if: ${{ always() }}
- uses: actions/upload-artifact@v4
203
+ uses: actions/upload-artifact@v5
204
with:
205
name: coverage-${{ matrix.shard }}
206
path: .coverage.${{ matrix.shard }}
207
if-no-files-found: error
208
+ include-hidden-files: true
209
210
- name: Final cleanup
211
0 commit comments