update justfile
This commit is contained in:
parent
98ebe3f30c
commit
8de3930a00
1 changed files with 5 additions and 1 deletions
6
justfile
6
justfile
|
@ -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 ./...
|
||||
|
|
Loading…
Add table
Reference in a new issue