this repo has no description
1name: test
2
3on:
4 pull_request:
5 branches: ["main"]
6 workflow_dispatch:
7
8jobs:
9 test:
10 strategy:
11 matrix:
12 os: [ubuntu-latest, macos-latest, windows-latest]
13 runs-on: ${{matrix.os}}
14 steps:
15 - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
16 - uses: mlugg/setup-zig@d1434d08867e3ee9daa34448df10607b98908d29 # v2.2.1
17 with:
18 version: 0.16.0
19 - run: zig build test
20 check-fmt:
21 runs-on: ubuntu-latest
22 steps:
23 - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
24 - uses: mlugg/setup-zig@d1434d08867e3ee9daa34448df10607b98908d29 # v2.2.1
25 with:
26 version: 0.16.0
27 - run: zig fmt --check .