aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 18 insertions, 0 deletions
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*