From 83f681f2a042a1b379a8567d13d55a38618ca6ff Mon Sep 17 00:00:00 2001 From: Hau Nguyen Date: Sat, 25 Feb 2023 23:24:26 +0700 Subject: [PATCH] chore: test build --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 8c8aba9..898a77d 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,8 @@ all: $(MAKE) test-color $(MAKE) lint $(MAKE) format + $(MAKE) build + $(MAKE) clean test: go test -race -failfast ./... @@ -36,4 +38,8 @@ format: shfmt -w ./scripts build: + $(MAKE) clean go build ./cmd/dot + +clean: + rm -rf dot