From bb0c77c6fa66f433a89de3413793056da99e5bb4 Mon Sep 17 00:00:00 2001 From: Nuno Cruces Date: Fri, 2 Feb 2024 17:49:46 +0000 Subject: [PATCH] Test on M1. --- .github/workflows/cpu.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cpu.yml b/.github/workflows/cpu.yml index b24e594..4cb2400 100644 --- a/.github/workflows/cpu.yml +++ b/.github/workflows/cpu.yml @@ -37,4 +37,20 @@ jobs: uses: docker/setup-qemu-action@v3 - name: Test - run: GOARCH=arm64 go test -v ./... \ No newline at end of file + run: GOARCH=arm64 go test -v ./... + + test-m1: + runs-on: macos-14 + + steps: + - uses: actions/checkout@v4 + with: + lfs: 'true' + + - name: Set up + uses: actions/setup-go@v5 + with: + go-version: stable + + - name: Test + run: go test -v ./... \ No newline at end of file