From cd0f38c77db57fd09ef3b6326ddc53923be938c6 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Fri, 7 Jan 2022 11:59:06 +0100 Subject: [PATCH] ci: macOS and windows added to pytest workflow --- .github/workflows/pytest.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 0f3ae2f3..febcfcf3 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -11,11 +11,17 @@ on: jobs: pytest: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: - fail-fast: true + fail-fast: true matrix: + os: [ubuntu-latest] python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + include: + - os: macos-latest + python-version: 3.9 + - os: windows-latest + python-version: 3.9 steps: - name: Checkout source