Skip to content

Commit

Permalink
Update QA run to run on multiple OS
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas-Avery committed Nov 29, 2023
1 parent 5b023e2 commit a725cd3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/qa-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a725cd3

Please sign in to comment.