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 28ba366 commit a2bf0aeCopy full SHA for a2bf0ae
.github/workflows/build.yml
@@ -10,14 +10,11 @@ jobs:
10
steps:
11
- uses: actions/checkout@v4
12
13
- - name: Print curl version
14
- run: curl --version
+ - name: Download Zig 0.12.0
+ run: curl -LO https://ziglang.org/download/0.12.0/zig-windows-x86_64-0.12.0.zip
15
16
- - name: Print wget version
17
- run: wget --version
18
-
19
- - name: Download Zig
20
- run: wget https://ziglang.org/download/0.12.0/zig-windows-x86_64-0.12.0.zip
+ - name: Unzip Zig
+ run: tar -xf zig-windows-x86_64-0.12.0.zip
21
22
- name: Run the tests
23
- run: zig test -freference-trace src/main.zig
+ run: zig-windows-x86_64-0.12.0\zig.exe test -freference-trace src/main.zig
0 commit comments