From 88b3531ef509b434ad80a868ee426d5d6de2e1cd Mon Sep 17 00:00:00 2001 From: Solly Ross Date: Mon, 26 Jun 2017 16:22:57 -0400 Subject: [PATCH] [build] add a test target This commit adds a target for running `go test`. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index f43fc322..969964a5 100644 --- a/Makefile +++ b/Makefile @@ -51,3 +51,6 @@ push: ./manifest-tool $(addprefix push-,$(ALL_ARCH)) vendor: glide.lock glide install -v + +test: vendor + CGO_ENABLED=0 go test ./pkg/...