We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93f5cf8 commit c96ec12Copy full SHA for c96ec12
1 file changed
.github/workflows/tests.yml
@@ -29,6 +29,9 @@ jobs:
29
- os: ubuntu-latest
30
zig-url: https://ziglang.org/download/0.16.0/zig-x86_64-linux-0.16.0.tar.xz
31
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
35
- os: windows-latest
36
zig-url: https://ziglang.org/download/0.16.0/zig-x86_64-windows-0.16.0.zip
37
zig-dir: zig-x86_64-windows-0.16.0
@@ -37,8 +40,8 @@ jobs:
40
- name: Checkout repository
38
41
uses: actions/checkout@v4
39
42
- - name: Install Zig 0.16.0 (Linux)
- if: runner.os == 'Linux'
43
+ - name: Install Zig 0.16.0 (Unix)
44
+ if: runner.os != 'Windows'
45
run: |
46
curl -sSfL ${{ matrix.zig-url }} | tar -xJ
47
echo "$PWD/${{ matrix.zig-dir }}" >> "$GITHUB_PATH"
0 commit comments