From 24fc79e440b6e87d29be189ba63b3a8818ff12c6 Mon Sep 17 00:00:00 2001 From: lgdd Date: Sun, 28 May 2023 16:13:22 +0200 Subject: [PATCH] chore: add lint command to Makefile --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 6510bbc..6a2d872 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,11 @@ all: go test -cover ./... go install ./... +lint: + go mod tidy + go mod verify + golangci-lint run + test: go mod tidy go test -v --coverprofile=coverage.out ./...