vikunja-api/vendor/github.com/go-ini/ini/Makefile

16 lines
245 B
Makefile
Raw Normal View History

2018-07-24 13:49:45 +02:00
.PHONY: build test bench vet coverage
2018-06-10 11:11:41 +02:00
build: vet bench
test:
go test -v -cover -race
bench:
go test -v -cover -race -test.bench=. -test.benchmem
vet:
go vet
2018-07-24 13:49:45 +02:00
coverage:
go test -coverprofile=c.out && go tool cover -html=c.out && rm c.out