From e53ff4f50b2a9e355aac13a40e83e1918284b95c Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Tue, 17 Mar 2026 21:37:27 -0400 Subject: [PATCH] fix: add `lint` to `.PHONY` --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fba4498..dd5baea 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: all help install clean test-unit test-mutation test-fuzz test docs lint-go lint-makefile +.PHONY: all help install clean test-unit test-mutation test-fuzz test docs lint-go lint-makefile lint help: ## Show this help @grep -E '^[a-zA-Z_-]+:.*##' $(MAKEFILE_LIST) | awk -F ':.*## ' '{printf " %-15s %s\n", $$1, $$2}' @@ -39,4 +39,4 @@ docs: ## Serve godoc locally clean: ## Clean build and test caches go clean -cache -testcache -all: lint-go lint-makefile test ## Run all checks and tests \ No newline at end of file +all: lint test ## Run all checks and tests \ No newline at end of file