From 49860f0960cb4f61567b308501c355c6e1cbd2a2 Mon Sep 17 00:00:00 2001 From: Felix Hanley Date: Wed, 21 Nov 2018 00:24:55 +1100 Subject: Add extra tests and line counting --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4667b56 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ + +pkgs := $(shell go list ./...) + +.PHONY: lint test clean + +ifdef GOPATH +GO111MODULE=on +endif + +test: lint ## Run tests with coverage + go test -short -cover -coverprofile coverage.out $(pkgs) + go tool cover -html=coverage.out -o coverage.html + +lint: + golint $(pkgs) + +clean: ## Clean all test files + rm -rf coverage* -- cgit v1.2.3