Skip to content

Commit c4ca183

Browse files
committed
fix
1 parent 507ee8c commit c4ca183

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

.github/workflows/macos.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
unit-tests:
2525
strategy:
2626
matrix:
27-
# NOTE: macos-13 is intel and macos-latest is arm
28-
os: [ macos-13, macos-latest ]
27+
# NOTE: macos-13 is intel, macos-14 is arm64, macos-15 is arm64
28+
os: [ macos-13, macos-14, macos-15 ]
2929
fail-fast: false
3030
runs-on: ${{ matrix.os }}
3131
steps:
@@ -35,11 +35,7 @@ jobs:
3535
with:
3636
go-version-file: .go-version
3737

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-
4438
- name: Run Unit Tests
45-
run: RACE_DETECTOR=true TEST_COVERAGE=true mage unitTest
39+
run: |
40+
go install github.com/magefile/mage
41+
RACE_DETECTOR=true TEST_COVERAGE=true mage unitTest

0 commit comments

Comments
 (0)