We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d1c65c commit 28ba366Copy full SHA for 28ba366
1 file changed
.github/workflows/build.yml
@@ -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