aboutsummaryrefslogtreecommitdiffhomepage
path: root/justfile
blob: 96c3831276ef0979c93e6acf681ad5078ed027b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
help:
    @just -l

build: fmt
    @zig build

run QUERY:
    @zig build run -- {{QUERY}}

test: fmt
    @zig build test

fmt:
    @zig fmt .