From 1cc83bd0d19e4dfd8e0a2aac80f2d8023f0bd52d Mon Sep 17 00:00:00 2001 From: ngaut Date: Sat, 12 Sep 2015 10:52:33 +0800 Subject: [PATCH] Makefile: Make check by default. So we won't forget to make check. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 93b249195f..c3fa721740 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ LDFLAGS += -X "github.com/pingcap/tidb/util/printer.TiDBGitHash=$(shell git rev- .PHONY: deps all build install parser clean todo test tidbtest mysqltest gotest interpreter -all: godep parser build test +all: godep parser build test check godep: go get github.com/tools/godep