We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3f2620 commit d0548f6Copy full SHA for d0548f6
1 file changed
.github/workflows/ci.yml
@@ -6,13 +6,13 @@ on:
6
- '**' # Runs on all branches
7
pull_request:
8
9
+# YAML anchor for the runner OS
10
+# These images are arm64 unless specified: https://github.com/actions/runner-images
11
+x-runner: &runner-os [macos-15] # macOS CI is expensive: [macos-14, macos-15, macos-15-intel, macos-26]
12
+
13
jobs:
14
build:
- runs-on: ${{ matrix.os }}
- strategy:
- matrix:
- # These images are arm64 unless specified: https://github.com/actions/runner-images
15
- os: [macos-15] # macOS CI is expensive: [macos-14, macos-15, macos-15-intel, macos-26]
+ runs-on: *runner-os
16
17
steps:
18
- name: Checkout repository
@@ -64,7 +64,7 @@ jobs:
64
65
test:
66
needs: build
67
68
69
70
0 commit comments