We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b338eb7 commit a36486cCopy full SHA for a36486c
Dockerfile
@@ -9,6 +9,7 @@ RUN go mod download
9
10
# Compile
11
COPY ./ /go/src/github.com/webdevops/kube-pool-manager
12
+RUN make test
13
RUN make lint
14
RUN make build
15
RUN ./kube-pool-manager --help
Makefile
@@ -26,6 +26,9 @@ vendor:
26
image: build
27
docker build -t $(NAME):$(TAG) .
28
29
+test:
30
+ go test ./...
31
+
32
.PHONY: lint
33
lint: $(GOLANGCI_LINT_BIN)
34
# megacheck fails to respect build flags, causing compilation failure during linting.
0 commit comments