We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaaa929 commit ab39d80Copy full SHA for ab39d80
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,21 @@
1
+name: CI
2
+
3
+on: [push]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - name: Install dependencies
11
+ run: |
12
+ sudo snap install zig --classic --edge
13
+ zig version
14
+ - name: Fetch test-data
15
+ run: git submodule update --init
16
+ - name: Run tests
17
+ run: zig build test
18
+ - name: Run lookup example
19
+ run: zig build example_lookup
20
+ - name: Run within example
21
+ run: zig build example_within
0 commit comments