Skip to content

Commit b1703d0

Browse files
committed
feat(ci): run tests on x86_64 and ARM64
1 parent 473aa1d commit b1703d0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ jobs:
1717
extra_args: --all-files
1818

1919
tests:
20-
runs-on: ubuntu-latest
20+
strategy:
21+
matrix:
22+
os: [ubuntu-latest, ubuntu-24.04-arm]
23+
runs-on: ${{ matrix.os }}
2124
steps:
2225
- uses: actions/checkout@v4
2326
- uses: mlugg/setup-zig@v1
@@ -27,6 +30,7 @@ jobs:
2730

2831
- name: Run valgrind tests
2932
run: |
33+
sudo apt-get update
3034
sudo apt-get install -y valgrind
3135
just test-valgrind
3236

0 commit comments

Comments
 (0)