1
0
gomponents/Makefile
Markus Wüstenberg 15d2cc9373
Add Makefile (#4)
2020-09-18 13:57:04 +02:00

12 lines
150 B
Makefile

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