mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
c6950d2cb0
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
24 lines
406 B
Makefile
24 lines
406 B
Makefile
DIR?=./autorest/
|
|
|
|
default: build
|
|
|
|
build: fmt
|
|
go install $(DIR)
|
|
|
|
test:
|
|
go test $(DIR) || exit 1
|
|
|
|
vet:
|
|
@echo "go vet ."
|
|
@go vet $(DIR)... ; if [ $$? -eq 1 ]; then \
|
|
echo ""; \
|
|
echo "Vet found suspicious constructs. Please check the reported constructs"; \
|
|
echo "and fix them if necessary before submitting the code for review."; \
|
|
exit 1; \
|
|
fi
|
|
|
|
fmt:
|
|
gofmt -w $(DIR)
|
|
|
|
.PHONY: build test vet fmt
|