Skip to content

Commit a2bf0ae

Browse files
committed
Fix build.yml commands
1 parent 28ba366 commit a2bf0ae

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,11 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v4
1212

13-
- name: Print curl version
14-
run: curl --version
13+
- name: Download Zig 0.12.0
14+
run: curl -LO https://ziglang.org/download/0.12.0/zig-windows-x86_64-0.12.0.zip
1515

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
16+
- name: Unzip Zig
17+
run: tar -xf zig-windows-x86_64-0.12.0.zip
2118

2219
- name: Run the tests
23-
run: zig test -freference-trace src/main.zig
20+
run: zig-windows-x86_64-0.12.0\zig.exe test -freference-trace src/main.zig

0 commit comments

Comments
 (0)