From 1d888118c575ba54bedf745d9c1c5be446bc68fc Mon Sep 17 00:00:00 2001 From: Chris Cummer Date: Sun, 13 Jan 2019 11:59:02 -0800 Subject: [PATCH] Add 'make test' to the Makefile --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b9096b3f..e9d71c6c 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: contrib_check dependencies install run size +.PHONY: contrib_check dependencies install run size test # detect GOPATH if not set ifndef $(GOPATH) @@ -36,3 +36,6 @@ run: build size: loc --exclude vendor/ _sample_configs/ _site/ docs/ Makefile *.md *.toml + +test: build + go test ./...