diff --git a/justfile b/justfile index ef3f8e3..dd93a1d 100644 --- a/justfile +++ b/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 ./...