From f1c2099f73d5a50f5575e0fe51607f373e5be05d Mon Sep 17 00:00:00 2001 From: robinjhuang Date: Sun, 22 Sep 2024 15:39:22 +0900 Subject: [PATCH] Run unit tests on Windows as well. --- .github/workflows/test-unit.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-unit.yml b/.github/workflows/test-unit.yml index a988c8a8f9a..04abf476a1d 100644 --- a/.github/workflows/test-unit.yml +++ b/.github/workflows/test-unit.yml @@ -8,10 +8,14 @@ on: jobs: test: - runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - name: Set up Python + uses: actions/setup-python@v4 with: python-version: '3.10' - name: Install requirements