qrz/vendor/github.com/spf13/cobra/Makefile

41 lines
1.1 KiB
Makefile
Raw Normal View History

2020-12-26 17:31:13 +01:00
BIN="./bin"
SRC=$(shell find . -name "*.go")
2021-04-07 11:15:36 +02:00
ifeq (, $(shell which golangci-lint))
$(warning "could not find golangci-lint in $(PATH), run: curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh")
endif
2020-12-26 17:31:13 +01:00
ifeq (, $(shell which richgo))
$(warning "could not find richgo in $(PATH), run: go get github.com/kyoh86/richgo")
endif
2021-04-07 11:15:36 +02:00
.PHONY: fmt lint test cobra_generator install_deps clean
2020-12-26 17:31:13 +01:00
default: all
2021-04-07 11:15:36 +02:00
all: fmt test cobra_generator
2020-12-26 17:31:13 +01:00
fmt:
$(info ******************** checking formatting ********************)
@test -z $(shell gofmt -l $(SRC)) || (gofmt -d $(SRC); exit 1)
2021-04-07 11:15:36 +02:00
lint:
$(info ******************** running lint tools ********************)
golangci-lint run -v
test: install_deps lint
2020-12-26 17:31:13 +01:00
$(info ******************** running tests ********************)
richgo test -v ./...
cobra_generator: install_deps
$(info ******************** building generator ********************)
mkdir -p $(BIN)
make -C cobra all
install_deps:
$(info ******************** downloading dependencies ********************)
go get -v ./...
clean:
rm -rf $(BIN)