this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

makefile: coverage helper

+5
+5
Makefile
··· 16 16 test: ## Run all tests 17 17 go test ./... 18 18 19 + .PHONY: coverage-html 20 + coverage-html: ## Generate test coverage report and open in browser 21 + go test ./... -coverprofile=test-coverage.out 22 + go tool cover -html=test-coverage.out 23 + 19 24 .PHONY: lint 20 25 lint: ## Run style checks and verify syntax 21 26 go vet -asmdecl -assign -atomic -bools -buildtag -cgocall -copylocks -httpresponse -loopclosure -lostcancel -nilfunc -printf -shift -stdmethods -structtag -tests -unmarshal -unreachable -unsafeptr -unusedresult ./...