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 output := "." / build_dir / binary
# do the thing # do the thing
default: test run default: test check build install
# build binary # build binary
build: build:
@ -33,3 +33,7 @@ clean:
# run go tests # run go tests
test: test:
go test ./... go test ./...
# run linter
check:
staticcheck ./...