Skip to content

Commit 2a2afa4

Browse files
committed
ci: add test on Windows
1 parent b5546bd commit 2a2afa4

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ jobs:
1818
pyver: '3.10'
1919
- os: 'windows'
2020
pyver: '3.11'
21-
- os: 'windows'
22-
pyver: '3.12'
2321
runs-on: ${{ matrix.os }}-latest
2422
name: ${{ matrix.os }} | ${{ matrix.pyver }}
2523
steps:
@@ -33,3 +31,10 @@ jobs:
3331
run: pip install .
3432
- name: Run tests
3533
run: make test
34+
continue-on-error: true
35+
- name: Upload test results on failure
36+
if: failure()
37+
uses: actions/upload-artifact@v4
38+
with:
39+
name: test-results
40+
path: tests/results

0 commit comments

Comments
 (0)