chore: add Makefile
parent
cbb3c44210
commit
95a3ee333c
|
@ -0,0 +1,23 @@
|
|||
.PHONY: all test test-color coverage coverage-cli coverate-html lint
|
||||
|
||||
all: test-color lint
|
||||
go mod tidy
|
||||
|
||||
test:
|
||||
go test -race -failfast ./...
|
||||
|
||||
test-color:
|
||||
go install github.com/haunt98/go-test-color@latest
|
||||
go-test-color -race -failfast ./...
|
||||
|
||||
coverage:
|
||||
go test -coverprofile=coverage.out ./...
|
||||
|
||||
coverage-cli: coverage
|
||||
go tool cover -func=coverage.out
|
||||
|
||||
coverage-html: coverage
|
||||
go tool cover -html=coverage.out
|
||||
|
||||
lint:
|
||||
golangci-lint run ./...
|
Loading…
Reference in New Issue