1
Fork 0
undocker/Makefile

11 lines
204 B
Makefile
Raw Normal View History

2021-06-01 08:42:23 +03:00
.PHONY: test
test:
go test -cover ./...
.INTERMEDIATE: coverage.out
coverage.out: $(shell git ls-files '*.go')
go test -coverprofile $@ ./...
coverage.html: coverage.out
go tool cover -html=$< -o $@