From a725cd35e886ce1cee67aa79f4f48f87241fb91b Mon Sep 17 00:00:00 2001 From: Thomas Avery Date: Wed, 29 Nov 2023 12:46:40 -0600 Subject: [PATCH] Update QA run to run on multiple OS --- .github/workflows/qa-run.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/qa-run.yml b/.github/workflows/qa-run.yml index 3d69c82..98dd016 100644 --- a/.github/workflows/qa-run.yml +++ b/.github/workflows/qa-run.yml @@ -17,7 +17,15 @@ on: jobs: run: - runs-on: ubuntu-latest + name: Running QA test on ${{ matrix.settings.os }} + runs-on: ${{ matrix.settings.os || 'ubuntu-latest' }} + strategy: + fail-fast: false + matrix: + settings: + - os: macos-12 + - os: windows-2022 + - os: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2