Skip to content

Commit 3da09e0

Browse files
Switch github runner to macos-14 (m1) (#1421)
Add macos-14 runner (m1)
1 parent 03d7704 commit 3da09e0

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build-and-test:
1010
strategy:
1111
matrix:
12-
os: [ubuntu-latest, macos-latest, windows-latest]
12+
os: [ubuntu-latest, macos-intel, macos-arm, windows-latest]
1313
go-version: ["1.21", "1.22"]
1414
include:
1515
- os: ubuntu-latest
@@ -18,7 +18,12 @@ jobs:
1818
uploadCoverage: true
1919
# We only want to check docker compose on a single target
2020
testDockerCompose: true
21-
runs-on: ${{ matrix.os }}
21+
- os: macos-intel
22+
runsOn: macos-12
23+
- os: macos-arm
24+
runsOn: macos-14
25+
26+
runs-on: ${{ matrix.runsOn || matrix.os }}
2227
steps:
2328
- name: Checkout repository
2429
uses: actions/checkout@v3

0 commit comments

Comments
 (0)