From ba2e2527594d0b08ea11670248da787b417fc6ea Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Mon, 4 Jul 2022 18:53:38 +0200 Subject: [PATCH] Test on all OS-es --- .github/workflows/test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f572f6d..9dd266a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,12 +9,14 @@ on: jobs: test: - name: Build and test on Python ${{ matrix.python-version }} - runs-on: ubuntu-latest + name: Build and test on ${{ matrix.operating-system }} with Python ${{ matrix.python-version }} strategy: matrix: python-version: ["3.8", "3.9", "3.10"] + operating-system: [macos-latest, windows-latest, ubuntu-latest] + + runs-on: ${{ matrix.operating-system }} steps: - name: Checkout