diff --git a/client/Makefile b/client/Makefile index 6bc5e8e768c..fa0aa804c91 100644 --- a/client/Makefile +++ b/client/Makefile @@ -16,6 +16,8 @@ GO_TOOLS_BIN_PATH := $(shell pwd)/../.tools/bin PATH := $(GO_TOOLS_BIN_PATH):$(PATH) SHELL := env PATH='$(PATH)' GOBIN='$(GO_TOOLS_BIN_PATH)' $(shell which bash) +default: static tidy test + test: CGO_ENABLE=1 go test -race -cover diff --git a/pd.code-workspace b/pd.code-workspace new file mode 100644 index 00000000000..b8c66001a13 --- /dev/null +++ b/pd.code-workspace @@ -0,0 +1,11 @@ +{ + "folders": [ + { + "path": "." + }, + { + "path": "client" + } + ], + "settings": {} +} \ No newline at end of file