0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-10-27 17:29:23 +01:00
gitea/vendor/gopkg.in/ini.v1/Makefile
2019-05-13 11:38:53 -04:00

15 lines
245 B
Makefile

.PHONY: build test bench vet coverage
build: vet bench
test:
go test -v -cover -race
bench:
go test -v -cover -race -test.bench=. -test.benchmem
vet:
go vet
coverage:
go test -coverprofile=c.out && go tool cover -html=c.out && rm c.out