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 c6c8724 commit 0335523Copy full SHA for 0335523
.github/workflows/ci.yaml
@@ -0,0 +1,27 @@
1
+name: CI
2
+on: [push]
3
+jobs:
4
+ test:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v4
8
+ - uses: mlugg/setup-zig@v1
9
+ with:
10
+ version: 0.14.0-dev.2628+5b5c60f43
11
+ - run: zig build test
12
+ lint:
13
14
15
16
17
18
19
+ - run: zig fmt --check .
20
+ docs:
21
22
23
24
25
26
27
+ - run: zig build docs
0 commit comments