Skip to content

Commit 1260b48

Browse files
committed
ci: add arch to the matrix for clarity
1 parent 0204c25 commit 1260b48

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,14 @@ jobs:
99
test:
1010
strategy:
1111
matrix:
12-
os: [
13-
ubuntu-latest, # x86_64
14-
macos-13, # x86_64
15-
]
16-
runs-on: ${{ matrix.os }}
12+
include:
13+
- runner: ubuntu-latest
14+
os: Linux
15+
arch: x86_64
16+
- runner: macos-13
17+
os: macOS
18+
arch: x86_64
19+
runs-on: ${{ matrix.runner }}
1720
steps:
1821
- uses: actions/checkout@v4
1922
- run: rustup component add rustfmt rustc-dev

0 commit comments

Comments
 (0)