From 705f9ecaec4cb3546c272bcddd1000799c2d83c0 Mon Sep 17 00:00:00 2001 From: Felipe Contreras Date: Fri, 1 Aug 2025 18:53:51 -0600 Subject: [PATCH] github: enable windows test --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a097a7f..5ef1952 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,3 +22,20 @@ jobs: run: pip install mercurial==${{ matrix.hg }} - run: prove -j4 + test-windows: + runs-on: windows-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + - uses: actions/cache@v4 + id: cache-pip + with: + path: ~/appdata/local/pip/cache + key: pip-windows + - name: Install hg + run: + pip install mercurial + - name: Run all tests + run: prove -j4 --exec bash.exe