go-charts/Makefile
2021-12-18 20:09:02 +08:00

20 lines
No EOL
304 B
Makefile

export GO111MODULE = on
.PHONY: default test test-cover dev hooks
# for test
test:
go test -race -cover ./...
test-cover:
go test -race -coverprofile=test.out ./... && go tool cover --html=test.out
bench:
go test --benchmem -bench=. ./...
lint:
golangci-lint run
hooks:
cp hooks/* .git/hooks/