update justfile

This commit is contained in:
Lilian Jónsdóttir 2024-03-11 16:07:00 -07:00
parent 98ebe3f30c
commit 8de3930a00

View file

@ -4,7 +4,7 @@ cmd := "." / "cmd" / binary
output := "." / build_dir / binary
# do the thing
default: test run
default: test check build install
# build binary
build:
@ -33,3 +33,7 @@ clean:
# run go tests
test:
go test ./...
# run linter
check:
staticcheck ./...