From 8d1dd0ace7d42579f9fb18d6ad1934ff22eca4a9 Mon Sep 17 00:00:00 2001 From: Heathcliff Date: Sat, 10 Aug 2024 14:46:20 +0200 Subject: [PATCH] Makefile: Add commands for lint and coverprofile Signed-off-by: Heathcliff --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index e593eda0..a96204a1 100644 --- a/Makefile +++ b/Makefile @@ -18,10 +18,18 @@ test: update-deps: hack/update-deps.sh +coverprofile: + hack/coverprofile.sh + +lint: + golangci-lint run -v + .PHONY: \ default \ build \ image \ test \ update-deps \ + coverprofile \ + lint \ $(NULL)