From 7f1665989ecc9d200a783a78268cbca8d95e33e1 Mon Sep 17 00:00:00 2001 From: Stefan Zweifel Date: Sun, 26 Sep 2021 11:07:08 +0200 Subject: [PATCH] Update tests.yml to run tests on multiple OS --- .github/workflows/tests.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0f5808a..3dcbde5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,13 @@ on: jobs: tests: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + fail-fast: true + matrix: + os: [ubuntu-latest, windows-latest] + + name: Tests ${{ matrix.os }} steps: - uses: actions/checkout@v2