Skip to content

Commit 705f9ec

Browse files
committed
github: enable windows test
1 parent 7c3eccd commit 705f9ec

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,20 @@ jobs:
2222
run:
2323
pip install mercurial==${{ matrix.hg }}
2424
- run: prove -j4
25+
test-windows:
26+
runs-on: windows-latest
27+
steps:
28+
- uses: actions/checkout@v4
29+
- uses: actions/setup-python@v5
30+
with:
31+
python-version: '3.11'
32+
- uses: actions/cache@v4
33+
id: cache-pip
34+
with:
35+
path: ~/appdata/local/pip/cache
36+
key: pip-windows
37+
- name: Install hg
38+
run:
39+
pip install mercurial
40+
- name: Run all tests
41+
run: prove -j4 --exec bash.exe

0 commit comments

Comments
 (0)