Skip to content

Commit eeca366

Browse files
committed
ci: enable to run on win
1 parent 727631d commit eeca366

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

.github/workflows/unit-test.yml

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
test-ubuntu:
1212
runs-on: ubuntu-latest
1313
strategy:
14+
fail-fast: false
1415
matrix:
1516
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1617
steps:
@@ -24,18 +25,19 @@ jobs:
2425
- name: Run Tox
2526
run: tox -e py
2627

27-
# test-win:
28-
# runs-on: windows-latest
29-
# strategy:
30-
# matrix:
31-
# python-version: ["3.7", "3.8", "3.9", "3.10"]
32-
# steps:
33-
# - uses: actions/checkout@v3
34-
# - name: Set up Python ${{ matrix.python-version }}
35-
# uses: actions/setup-python@v3
36-
# with:
37-
# python-version: ${{ matrix.python-version }}
38-
# - name: Install tox
39-
# run: pip install tox
40-
# - name: Run Tox
41-
# run: tox -e py
28+
test-win:
29+
runs-on: windows-latest
30+
strategy:
31+
fail-fast: false
32+
matrix:
33+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
34+
steps:
35+
- uses: actions/checkout@v4
36+
- name: Set up Python ${{ matrix.python-version }}
37+
uses: actions/setup-python@v5
38+
with:
39+
python-version: ${{ matrix.python-version }}
40+
- name: Install tox
41+
run: pip install tox
42+
- name: Run Tox
43+
run: tox -e py

0 commit comments

Comments
 (0)