2020-02-20 19:25:38 +00:00
|
|
|
BIN="./bin"
|
|
|
|
SRC=$(shell find . -name "*.go")
|
|
|
|
|
2021-02-08 00:08:50 +00: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
|
|
|
|
|
2022-03-10 15:19:35 +00:00
|
|
|
.PHONY: fmt lint test install_deps clean
|
2020-02-20 19:25:38 +00:00
|
|
|
|
|
|
|
default: all
|
|
|
|
|
2022-03-10 15:19:35 +00:00
|
|
|
all: fmt test
|
2020-02-20 19:25:38 +00:00
|
|
|
|
|
|
|
fmt:
|
|
|
|
$(info ******************** checking formatting ********************)
|
|
|
|
@test -z $(shell gofmt -l $(SRC)) || (gofmt -d $(SRC); exit 1)
|
|
|
|
|
2021-02-08 00:08:50 +00:00
|
|
|
lint:
|
|
|
|
$(info ******************** running lint tools ********************)
|
|
|
|
golangci-lint run -v
|
|
|
|
|
2021-12-07 23:06:09 +00:00
|
|
|
test: install_deps
|
2020-02-20 19:25:38 +00:00
|
|
|
$(info ******************** running tests ********************)
|
2023-04-04 02:17:45 +00:00
|
|
|
LANGUAGE="en" go test -v ./...
|
2022-11-25 20:55:09 +00:00
|
|
|
|
|
|
|
richtest: install_deps
|
|
|
|
$(info ******************** running tests with kyoh86/richgo ********************)
|
2020-02-20 19:25:38 +00:00
|
|
|
richgo test -v ./...
|
|
|
|
|
2024-01-10 15:13:34 +00:00
|
|
|
i18n_extract: install_i18n_deps
|
|
|
|
$(info ******************** extracting translation files ********************)
|
|
|
|
xgotext -v -in . -out locales
|
|
|
|
|
2020-02-20 19:25:38 +00:00
|
|
|
install_deps:
|
|
|
|
$(info ******************** downloading dependencies ********************)
|
|
|
|
go get -v ./...
|
|
|
|
|
2024-01-10 15:13:34 +00:00
|
|
|
install_i18n_deps:
|
|
|
|
go install github.com/leonelquinteros/gotext/cli/xgotext
|
|
|
|
|
2020-02-20 19:25:38 +00:00
|
|
|
clean:
|
|
|
|
rm -rf $(BIN)
|