We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca16e02 commit d237249Copy full SHA for d237249
Makefile
@@ -8,6 +8,7 @@ build: ## Build a command to quickly check compiles.
8
9
.PHONY: check
10
check: lint build test ## Runs all necessary code checks.
11
+ @go mod tidy
12
13
.PHONY: test
14
test: ## Run all tests.
@@ -30,6 +31,7 @@ test-env-down: ## Down and cleanup test environment.
30
31
lint: tools ## Check the project with lint.
32
@golangci-lint run --fix ./...
33
34
+.PHONY: tools
35
tools: ## Install all needed tools, e.g.
36
@go install -v github.com/golangci/golangci-lint/cmd/[email protected]
37
0 commit comments