From 1e469c53b72c6e497c2f05ab901937738ac409bc Mon Sep 17 00:00:00 2001 From: cmorten Date: Sun, 18 Sep 2022 17:46:51 +0100 Subject: [PATCH] test: use matrix to test against all macos versions --- .github/workflows/test-voiceover.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-voiceover.yml b/.github/workflows/test-voiceover.yml index 4a4c8bc..ccb420a 100644 --- a/.github/workflows/test-voiceover.yml +++ b/.github/workflows/test-voiceover.yml @@ -8,7 +8,10 @@ on: jobs: test-voiceover: - runs-on: macos-11 + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [macos-11, macos-12, macos-latest] steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1