Skip to content

Commit b934ef1

Browse files
committed
feat(ci): run tests on x86_64 and ARM64
1 parent 9cf177c commit b934ef1

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
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
@@ -28,7 +31,7 @@ jobs:
2831
- name: Run valgrind tests
2932
run: |
3033
sudo apt-get install -y valgrind
31-
just test-valgrind
34+
./scripts/test-valgrind.sh
3235
3336
build:
3437
strategy:

0 commit comments

Comments
 (0)