Skip to content

Commit f7006e9

Browse files
author
Paulo Gomes
authored
Merge pull request #817 from pjbgf/expand-macos
build: run darwin tests on macos 10.15, 11 and 12
2 parents 15b6fed + 3635f44 commit f7006e9

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/tests.yaml

+6-3
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,13 @@ jobs:
5858
GO_TEST_ARGS: ''
5959
run: make test
6060

61-
# Runs 'make test' on macos-10.15 to assure development environment for
62-
# contributors using MacOS.
61+
# Runs 'make test' on MacOS to ensure the continuous support for contributors
62+
# using it as a development environment.
6363
darwin-amd64:
64-
runs-on: macos-10.15
64+
strategy:
65+
matrix:
66+
os: [macos-10.15, macos-11, macos-12]
67+
runs-on: ${{ matrix.os }}
6568
steps:
6669
- name: Checkout
6770
uses: actions/checkout@v3

0 commit comments

Comments
 (0)