1 2 3 4 5 6 7 8 9
## makectl: description="Run Go tests" .PHONY: test test: ## Run tests go test -v -race ./... .PHONY: test-cov test-cov: ## Run tests with coverage go test -v -race -coverprofile=coverage.out ./... go tool cover -html=coverage.out -o coverage.html