From bfd3d587d921c577cc1b0dd5b1d6305dbafcb347 Mon Sep 17 00:00:00 2001 From: Vasiliy Vasilyuk Date: Sun, 30 Jun 2024 23:10:58 +0300 Subject: [PATCH] Add '.PHONY' label for 'tools' target --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 91c6c4f..debb25f 100644 --- a/Makefile +++ b/Makefile @@ -30,6 +30,7 @@ test-env-down: ## Down and cleanup test environment. lint: tools ## Check the project with lint. @golangci-lint run --fix ./... +.PHONY: tools tools: ## Install all needed tools, e.g. @go install -v github.com/golangci/golangci-lint/cmd/golangci-lint@v1.55.2