mirror of
https://github.com/spf13/cobra
synced 2024-11-24 14:47:12 +00:00
31 lines
758 B
Makefile
31 lines
758 B
Makefile
BIN="./bin"
|
|
SRC=$(shell find . -name "*.go")
|
|
|
|
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
|
|
|
|
.PHONY: lint test install_deps clean
|
|
|
|
default: all
|
|
|
|
all: test
|
|
|
|
install_deps:
|
|
$(info ******************** downloading dependencies ********************)
|
|
go get -v ./...
|
|
|
|
test: install_deps
|
|
$(info ******************** running tests ********************)
|
|
go test -v ./...
|
|
|
|
richtest: install_deps
|
|
$(info ******************** running tests with kyoh86/richgo ********************)
|
|
richgo test -v ./...
|
|
|
|
lint:
|
|
$(info ******************** running lint tools ********************)
|
|
golangci-lint run -v
|
|
|
|
clean:
|
|
rm -rf $(BIN)
|