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