diff --git a/Makefile b/Makefile index c1f5215..35534b3 100644 --- a/Makefile +++ b/Makefile @@ -4,14 +4,14 @@ run: ## Run the application (cross-platform; uses go run for dev on Linux/macOS/ run-debug: ## Run the application with debug logging (cross-platform) @go run . --log-level debug -build: deps ## Build a snapshot of the application for the current platform (uses -short for fast feedback) +build: deps lint ## Build a snapshot of the application for the current platform (uses -short for fast feedback) @go test -short -v ./... @goreleaser build --single-target --snapshot --clean -test: deps ## Run all tests +test: deps lint ## Run all tests @go test -shuffle=on -timeout=5m -v ./... -test-race: deps ## Run all tests with the race detector +test-race: deps lint ## Run all tests with the race detector @go test -race -shuffle=on -timeout=5m -v ./... lint: deps check-review-labels ## Run golangci-lint + review label hygiene check