update justfile
This commit is contained in:
parent
98ebe3f30c
commit
8de3930a00
6
justfile
6
justfile
|
@ -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 ./...
|
||||||
|
|
Loading…
Reference in a new issue