Skip to content

Commit fb61be3

Browse files
committed
___ wip: add CI test job on Windows
1 parent 579d11f commit fb61be3

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,24 @@ jobs:
2828
run: |
2929
make tests
3030
31+
test-in-windows:
32+
runs-on: windows-latest
33+
steps:
34+
- uses: actions/checkout@v5
35+
- name: Set up Python
36+
uses: actions/setup-python@v6
37+
with:
38+
python-version: 3.14
39+
- name: Install dependencies
40+
run: |
41+
choco install zbar
42+
python -m pip install --upgrade pip
43+
pip install -r requirements-dev.txt
44+
pip freeze
45+
- name: Run tests
46+
run: |
47+
make tests
48+
3149
quality:
3250
runs-on: ubuntu-latest
3351
steps:

0 commit comments

Comments
 (0)