2021-12-07 12:31:39 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
ifeq (, $(shell which richgo))
|
2022-11-07 10:20:30 +00:00
|
|
|
$(warning "could not find richgo in $(PATH), run: go install github.com/kyoh86/richgo@latest")
|
2021-12-07 12:31:39 +00:00
|
|
|
endif
|
|
|
|
|
2022-05-02 14:05:18 +01:00
|
|
|
.PHONY: fmt lint test install_deps clean
|
2021-12-07 12:31:39 +00:00
|
|
|
|
|
|
|
default: all
|
|
|
|
|
2022-05-02 14:05:18 +01:00
|
|
|
all: fmt test
|
2021-12-07 12:31:39 +00:00
|
|
|
|
|
|
|
fmt:
|
|
|
|
$(info ******************** checking formatting ********************)
|
|
|
|
@test -z $(shell gofmt -l $(SRC)) || (gofmt -d $(SRC); exit 1)
|
|
|
|
|
|
|
|
lint:
|
|
|
|
$(info ******************** running lint tools ********************)
|
|
|
|
golangci-lint run -v
|
|
|
|
|
2022-05-02 14:05:18 +01:00
|
|
|
test: install_deps
|
2021-12-07 12:31:39 +00:00
|
|
|
$(info ******************** running tests ********************)
|
|
|
|
richgo test -v ./...
|
|
|
|
|
|
|
|
install_deps:
|
|
|
|
$(info ******************** downloading dependencies ********************)
|
|
|
|
go get -v ./...
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf $(BIN)
|