From bedb339d21e9a04f0469c87e0fc6dc5e7539fd8f Mon Sep 17 00:00:00 2001 From: Rob Donnelly Date: Tue, 1 Aug 2023 15:42:42 -0700 Subject: [PATCH] ci: run tests on the 3 major platforms --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b35405b..4e5da70 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,14 @@ jobs: test: name: Test Suite - runs-on: ubuntu-latest + strategy: + matrix: + include: + - os: ubuntu-20.04 + - os: macos-11 + - os: windows-2019 + runs-on: ${{ matrix.os }} + steps: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1