1
0
gomponents/Makefile
2021-05-07 14:35:47 +02:00

15 lines
176 B
Makefile

.PHONY: benchmark cover lint test
benchmark:
go test -bench=.
cover:
go tool cover -html=cover.out
lint:
golangci-lint run
test:
go test -coverprofile=cover.out ./...