We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce293b9 commit e0e78ecCopy full SHA for e0e78ec
.github/workflows/zig-master-tests.yml
@@ -0,0 +1,36 @@
1
+name: Run tests against zig-master branch
2
+on:
3
+ schedule:
4
+ - cron: "0 18 * * *" # Run at 6pm every day
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@master
10
+ with:
11
+ submodules: recursive
12
+ fetch-depth: 0
13
+ ref: zig-master
14
+
15
+ - name: Zig setup
16
+ uses: goto-bus-stop/setup-zig@v1
17
18
+ version: master
19
20
+ - name: Run all tests
21
+ run: zig build test
22
23
+ lint:
24
25
26
27
28
29
30
+ - name: Setup Zig
31
32
33
34
35
+ - name: Check formatting
36
+ run: zig fmt --check .
0 commit comments