diff --git a/GNUmakefile b/GNUmakefile index 5c4aa92f3..191f620d5 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -13,6 +13,7 @@ SED ?= sed SYFT ?= syft TAIL ?= tail ECHO ?= echo +GOLINTCMD ?= golangci-lint DOCKER_BUILD_FLAGS?= DOCKER_BUILD= DOCKER_BUILDKIT=1 $(DOCKER) build $(DOCKER_BUILD_FLAGS) @@ -54,7 +55,7 @@ endif all: build .PHONY: lint -lint: vet npm-lint +lint: vet go-lint npm-lint .PHONY: vet vet: @probo/emails @@ -64,6 +65,10 @@ vet: @probo/emails npm-lint: $(NPM) run lint +.PHONY: go-lint +go-lint: + $(GOLINTCMD) run ./... + .PHONY: test test: CGO_ENABLED=1 test: ## Run tests with race detection and coverage (usage: make test [MODULE=./pkg/some/module])