Skip to content

Commit c96ec12

Browse files
committed
Run the tests on macOS in addition to Linux and Windows
1 parent 93f5cf8 commit c96ec12

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ jobs:
2929
- os: ubuntu-latest
3030
zig-url: https://ziglang.org/download/0.16.0/zig-x86_64-linux-0.16.0.tar.xz
3131
zig-dir: zig-x86_64-linux-0.16.0
32+
- os: macos-latest
33+
zig-url: https://ziglang.org/download/0.16.0/zig-aarch64-macos-0.16.0.tar.xz
34+
zig-dir: zig-aarch64-macos-0.16.0
3235
- os: windows-latest
3336
zig-url: https://ziglang.org/download/0.16.0/zig-x86_64-windows-0.16.0.zip
3437
zig-dir: zig-x86_64-windows-0.16.0
@@ -37,8 +40,8 @@ jobs:
3740
- name: Checkout repository
3841
uses: actions/checkout@v4
3942

40-
- name: Install Zig 0.16.0 (Linux)
41-
if: runner.os == 'Linux'
43+
- name: Install Zig 0.16.0 (Unix)
44+
if: runner.os != 'Windows'
4245
run: |
4346
curl -sSfL ${{ matrix.zig-url }} | tar -xJ
4447
echo "$PWD/${{ matrix.zig-dir }}" >> "$GITHUB_PATH"

0 commit comments

Comments
 (0)