We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5546bd commit 17869c1Copy full SHA for 17869c1
.github/workflows/test.yml
@@ -18,8 +18,6 @@ jobs:
18
pyver: '3.10'
19
- os: 'windows'
20
pyver: '3.11'
21
- - os: 'windows'
22
- pyver: '3.12'
23
runs-on: ${{ matrix.os }}-latest
24
name: ${{ matrix.os }} | ${{ matrix.pyver }}
25
steps:
@@ -33,3 +31,9 @@ jobs:
33
31
run: pip install .
34
32
- name: Run tests
35
run: make test
+ - name: Upload results on failure
+ if: failure()
36
+ uses: actions/upload-artifact@v4
37
+ with:
38
+ name: results
39
+ path: tests/results
0 commit comments