Skip to content

Commit

Permalink
Switch github runner to macos-14 (m1) (#1421)
Browse files Browse the repository at this point in the history
Add macos-14 runner (m1)
  • Loading branch information
Quinn-With-Two-Ns committed Mar 18, 2024
1 parent 03d7704 commit 3da09e0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
build-and-test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-intel, macos-arm, windows-latest]
go-version: ["1.21", "1.22"]
include:
- os: ubuntu-latest
Expand All @@ -18,7 +18,12 @@ jobs:
uploadCoverage: true
# We only want to check docker compose on a single target
testDockerCompose: true
runs-on: ${{ matrix.os }}
- os: macos-intel
runsOn: macos-12
- os: macos-arm
runsOn: macos-14

runs-on: ${{ matrix.runsOn || matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down

0 comments on commit 3da09e0

Please sign in to comment.