From 2e087bdf5f676bd8c3cf0ea9ed3e8bf1fdc6a72c Mon Sep 17 00:00:00 2001 From: Thomas Pelletier Date: Tue, 30 Jan 2024 19:15:50 -0500 Subject: [PATCH] Run tests on macos/M1 (#929) https://github.blog/changelog/2024-01-30-github-actions-introducing-the-new-m1-macos-runner-available-to-open-source/ --- .github/workflows/workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 3e28f6b..622f537 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -11,7 +11,7 @@ jobs: build: strategy: matrix: - os: [ 'ubuntu-latest', 'windows-latest', 'macos-latest' ] + os: [ 'ubuntu-latest', 'windows-latest', 'macos-latest', 'macos-14' ] go: [ '1.20', '1.21' ] runs-on: ${{ matrix.os }} name: ${{ matrix.go }}/${{ matrix.os }}