We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d420b92 commit 3bade4bCopy full SHA for 3bade4b
1 file changed
.github/workflows/create-dumps.yml
@@ -48,18 +48,30 @@ jobs:
48
run: |
49
python -Xfrozen_modules=off -m pytest -vv
50
51
- - name: Upload coverage report
+ - name: Upload dumps
52
uses: actions/upload-artifact@v4
53
with:
54
name: dumps-${{ matrix.arrays.os }}-${{ matrix.arrays.python-version }}
55
path: tests/dumps
56
+ retention-days: 1
57
- coverage:
58
+ gather_dumps:
59
needs: tests
60
runs-on: ubuntu-latest
61
steps:
- - name: Download all coverage reports
62
+ - name: Download dumps
63
uses: actions/download-artifact@v4
64
65
path: dumps
66
+
67
68
+ uses: actions/upload-artifact@v4
69
+ with:
70
+ name: dumps
71
+ path: dumps
72
73
74
75
76
77
0 commit comments