COVERPROFILE=cover.out
default: test
cover:
go test -coverprofile=$(COVERPROFILE) .
go tool cover -html=$(COVERPROFILE)
rm $(COVERPROFILE)
dependencies:
go get -d .
test:
go test -i ./...
go test -v ./...
.PHONY: coverage dependencies test
我不明白这个 golang makefile。有没有关于 golang makefile 的教程?我搜索了谷歌,没有找到任何完整的。例如,我没有看到对“封面”等的任何解释。
慕虎7371278
有只小跳蛙
相关分类