Skip to content

Commit abd3832

Browse files
committed
added make test
1 parent d2d0295 commit abd3832

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

generate/Makefile

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
BINARY_NAME=generate-kube-aliases
2-
BINARY=../bin/$(BINARY_NAME)
2+
BINARY=./bin/$(BINARY_NAME)
33
GOCMD=go
44
SRC=$(wildcard ./*.go)
55

66
.PHONY: build
77
build:
88
CGO_ENABLED=0 $(GOCMD) build --installsuffix 'static' -o $(BINARY)
9+
10+
.PHONY: test
11+
test:
12+
$(GOCMD) test ./pkg/...

0 commit comments

Comments
 (0)