Skip to content

Commit 56db9bb

Browse files
committed
fix: add a Makefile
make make build make test Signed-off-by: Ramkumar Chinchani <[email protected]>
1 parent 53fecb6 commit 56db9bb

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.PHONY: all build test
2+
3+
all: build test
4+
5+
build:
6+
go build -v ./...
7+
8+
test:
9+
go test -v -cover -race ./...

0 commit comments

Comments
 (0)