Skip to content

Commit 6a65389

Browse files
authored
Add matrix strategy for OS and architecture
1 parent ad7839c commit 6a65389

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/run_all_tests.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,15 @@ on:
88

99
jobs:
1010
build:
11+
strategy:
12+
matrix:
13+
os: [Linux, macOS]
14+
arch: [ARM64]
1115

12-
runs-on: [self-hosted, Linux, macOS, ARM64]
16+
runs-on:
17+
- self-hosted
18+
- ${{ matrix.os }}
19+
- ${{ matrix.arch }}
1320

1421
steps:
1522
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)