We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 507ee8c commit c4ca183Copy full SHA for c4ca183
.github/workflows/macos.yml
@@ -24,8 +24,8 @@ jobs:
24
unit-tests:
25
strategy:
26
matrix:
27
- # NOTE: macos-13 is intel and macos-latest is arm
28
- os: [ macos-13, macos-latest ]
+ # NOTE: macos-13 is intel, macos-14 is arm64, macos-15 is arm64
+ os: [ macos-13, macos-14, macos-15 ]
29
fail-fast: false
30
runs-on: ${{ matrix.os }}
31
steps:
@@ -35,11 +35,7 @@ jobs:
35
with:
36
go-version-file: .go-version
37
38
- - name: Install mage
39
- uses: magefile/mage-action@6f50bbb8ea47d56e62dee92392788acbc8192d0b # v3.1.0
40
- with:
41
- version: v1.14.0
42
- install-only: true
43
-
44
- name: Run Unit Tests
45
- run: RACE_DETECTOR=true TEST_COVERAGE=true mage unitTest
+ run: |
+ go install github.com/magefile/mage
+ RACE_DETECTOR=true TEST_COVERAGE=true mage unitTest
0 commit comments