From 8de3930a00f2f5c85e3e3757e82ebae9ffeb2fd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lilian=20J=C3=B3nsd=C3=B3ttir?= Date: Mon, 11 Mar 2024 16:07:00 -0700 Subject: [PATCH] update justfile --- justfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 ./...