From a5bfc80c3531f761da5e17560a309d1074922c8b Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Tue, 9 Nov 2021 19:49:32 +0100 Subject: [PATCH] Run CI tests on Windows. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Michael Käufl --- .github/workflows/tests.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3f81964..5a3d042 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -3,15 +3,18 @@ name: Tests on: push: branches: - - master + - master pull_request: jobs: tests: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }}-latest strategy: fail-fast: false matrix: + os: + - ubuntu + - windows python-version: - "3.6" - "3.7"