Skip to content

Commit 73a4b99

Browse files
committed
chore: full build matrix
Signed-off-by: Sam Gammon <sam@elide.ventures>
1 parent a86d1a5 commit 73a4b99

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,22 @@ jobs:
5656
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
5757

5858
test-action:
59-
name: "Test: Actions (${{ matrix.os }})"
60-
runs-on: ${{ matrix.os }}
59+
name: "Test: ${{ matrix.name }}"
60+
runs-on: ${{ matrix.runner }}
6161
strategy:
6262
fail-fast: false
6363
matrix:
64-
os: [ubuntu-latest, macos-latest, windows-latest]
64+
include:
65+
- name: linux-amd64
66+
runner: ubuntu-latest
67+
- name: linux-arm64
68+
runner: ubuntu-24.04-arm
69+
- name: macos-arm64
70+
runner: macos-latest
71+
- name: macos-amd64
72+
runner: macos-15-intel
73+
- name: windows-amd64
74+
runner: windows-latest
6575

6676
steps:
6777
- name: Harden Runner

0 commit comments

Comments
 (0)