From d9d7f62d81d4d8f95104d33211e82641884d711f Mon Sep 17 00:00:00 2001 From: undergroundwires Date: Sun, 18 Oct 2020 02:10:20 +0100 Subject: [PATCH] run tests on all operating systems: macos, ubuntu, windows --- .github/workflows/test.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index fc6ea51d..ebf5bf13 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -4,7 +4,10 @@ on: [ push, pull_request ] jobs: run-tests: - runs-on: ubuntu-latest + strategy: + matrix: + os: [macos, ubuntu, windows] + runs-on: ${{ matrix.os }}-latest steps: - name: Checkout