aboutsummaryrefslogtreecommitdiffhomepage
path: root/justfile
blob: 859ad6c67faff0e715b09071eddf410a0b4425b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
help:
    @just -l

build: fmt
    @zig build

test: fmt
    @zig test src/root.zig

fmt:
    @zig fmt .