makectl 0.2.0

Generate and manage targets in your Makefiles
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