Skip to content

Commit 5d5d262

Browse files
cornahenryiii
authored andcommitted
Re-enable Windows CI job
1 parent 5da54e1 commit 5d5d262

File tree

1 file changed

+24
-29
lines changed

1 file changed

+24
-29
lines changed

.github/workflows/ci.yml

Lines changed: 24 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -35,35 +35,30 @@ jobs:
3535
- name: Test package
3636
run: python -m pytest --forked
3737

38-
# Commented for now -- msys2 Clang (v15) and the clang Python package (v14) are incompatible
39-
#
40-
# checks_windows:
41-
# strategy:
42-
# fail-fast: false
43-
# matrix:
44-
# python-version:
45-
# - "3.8"
46-
# - "3.9"
47-
# runs-on:
48-
# - windows-latest
49-
# runs-on: ${{ matrix.runs-on }}
50-
# name: Test • 🐍 ${{ matrix.python-version }} • ${{matrix.runs-on}}
51-
# steps:
52-
# - uses: actions/checkout@v5
53-
# - uses: actions/setup-python@v6
54-
# with:
55-
# python-version: ${{ matrix.python-version }}
56-
#
57-
# - name: Install package
58-
# run: python -m pip install .[test]
59-
#
60-
# - name: Install clang
61-
# run: C:\msys64\usr\bin\pacman.exe -S clang64/mingw-w64-clang-x86_64-clang --noconfirm
62-
#
63-
# - name: Test package
64-
# env:
65-
# LIBCLANG_PATH: C:\msys64\clang64\bin\libclang.dll
66-
# run: python -m pytest -n2
38+
checks_windows:
39+
strategy:
40+
fail-fast: false
41+
matrix:
42+
python-version:
43+
- "3.8"
44+
- "3.9"
45+
- "3.10"
46+
- "3.11"
47+
runs-on:
48+
- windows-latest
49+
runs-on: ${{ matrix.runs-on }}
50+
name: Test • 🐍 ${{ matrix.python-version }} • ${{matrix.runs-on}}
51+
steps:
52+
- uses: actions/checkout@v3
53+
- uses: actions/setup-python@v4
54+
with:
55+
python-version: ${{ matrix.python-version }}
56+
57+
- name: Install package
58+
run: python -m pip install .[test]
59+
60+
- name: Test package
61+
run: python -m pytest -n2
6762

6863
dist:
6964
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)