1
0
gomponents/Makefile

17 lines
211 B
Makefile
Raw Normal View History

.PHONY: benchmark
benchmark:
go test -bench=.
2020-09-18 04:57:04 -07:00
.PHONY: cover
2020-09-18 04:57:04 -07:00
cover:
go tool cover -html=cover.out
.PHONY: lint
2020-09-18 04:57:04 -07:00
lint:
golangci-lint run
.PHONY: test
2020-09-18 04:57:04 -07:00
test:
go test -coverprofile=cover.out -shuffle on ./...
2020-09-18 04:57:04 -07:00