From b147b9819907d8eebe4788f756edf99843997e01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Odd=20Str=C3=A5b=C3=B8?= Date: Fri, 22 Sep 2023 03:10:13 +0000 Subject: [PATCH] Add windows to the test matrix --- .github/workflows/test.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 5787ebbe..29cbcb34 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -13,11 +13,15 @@ env: jobs: test: - runs-on: ubuntu-latest strategy: fail-fast: false matrix: py_version: ['2.7', '3.9', '3.11'] + os: [ubuntu-latest, windows-latest] + exclude: + - os: windows-latest + py_version: '2.7' + runs-on: ${{ matrix.os }} steps: - name: Checkout repository uses: actions/checkout@v3