We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdea0d2 commit 63b1aceCopy full SHA for 63b1ace
Makefile
@@ -50,6 +50,10 @@ test:
50
51
## Lint (requires golangci-lint)
52
lint:
53
+ @if ! command -v golangci-lint >/dev/null 2>&1; then \
54
+ echo "Installing golangci-lint..."; \
55
+ go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest; \
56
+ fi
57
@echo "Linting..."
58
@golangci-lint run
59
0 commit comments