From 3635f44b5bf6c1c5e711dbc9ad0020140e2b9430 Mon Sep 17 00:00:00 2001 From: Paulo Gomes Date: Wed, 6 Jul 2022 13:52:53 +0100 Subject: [PATCH] build: run darwin tests on macos 10.15, 11 and 12 Signed-off-by: Paulo Gomes --- .github/workflows/tests.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 6dd2847a9..2f04edf16 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -58,10 +58,13 @@ jobs: GO_TEST_ARGS: '' run: make test - # Runs 'make test' on macos-10.15 to assure development environment for - # contributors using MacOS. + # Runs 'make test' on MacOS to ensure the continuous support for contributors + # using it as a development environment. darwin-amd64: - runs-on: macos-10.15 + strategy: + matrix: + os: [macos-10.15, macos-11, macos-12] + runs-on: ${{ matrix.os }} steps: - name: Checkout uses: actions/checkout@v3