From 3b2f4ba01a2a5236e6dff220ea2956443e8925ab Mon Sep 17 00:00:00 2001 From: Thomas Pelletier Date: Mon, 2 Oct 2023 13:54:20 -0400 Subject: [PATCH] Test on M1 macOS https://github.blog/changelog/2023-10-02-github-actions-apple-silicon-m1-macos-runners-are-now-available-in-public-beta/ --- .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 3e28f6b1..8fec6807 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-latest-xlarge' ] go: [ '1.20', '1.21' ] runs-on: ${{ matrix.os }} name: ${{ matrix.go }}/${{ matrix.os }}