Skip to content

Commit 28ba366

Browse files
committed
Add a basic build.yml
1 parent 1d1c65c commit 28ba366

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/build.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI Build
2+
3+
on: push
4+
5+
jobs:
6+
build-tests:
7+
name: tests
8+
runs-on: windows-latest
9+
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- name: Print curl version
14+
run: curl --version
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
21+
22+
- name: Run the tests
23+
run: zig test -freference-trace src/main.zig

0 commit comments

Comments
 (0)