2022-07-03 14:34:46 +00:00
|
|
|
.PHONY: all test coverage-cli coverate-html lint
|
|
|
|
|
|
|
|
all: test lint
|
2021-11-06 07:37:03 +00:00
|
|
|
|
|
|
|
test:
|
|
|
|
go test -race -coverprofile=coverage.out ./...
|
|
|
|
|
|
|
|
coverage-cli: test
|
|
|
|
go tool cover -func=coverage.out
|
|
|
|
|
|
|
|
coverage-html: test
|
|
|
|
go tool cover -html=coverage.out
|
|
|
|
|
|
|
|
lint:
|
|
|
|
golangci-lint run ./...
|