Merge pull request #817 from pjbgf/expand-macos

build: run darwin tests on macos 10.15, 11 and 12
This commit is contained in:
Paulo Gomes 2022-07-06 15:38:28 +01:00 committed by GitHub
commit f7006e91dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -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