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 0a107c0 commit 7424e78Copy full SHA for 7424e78
.github/workflows/ci.yaml
@@ -0,0 +1,25 @@
1
+name: CI
2
+on: [push]
3
+jobs:
4
+ zig:
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
+ test:
12
13
+ needs: zig
14
15
+ - run: zig build test
16
+ lint:
17
18
19
20
+ - run: zig fmt --check .
21
+ docs:
22
23
24
25
+ - run: zig build docs
0 commit comments