spf13--cobra/Makefile
Goutte 2e90e51710 feat(i18n): add make i18n_extract and make i18n_merge
Flow is as follows:

    <add some new i18n.Message in code>
    make i18n_extract
    <fill the generated translations/translate.*.toml>
    make i18n_merge
    <perhaps delete translations/translate.*.toml> ?
2023-11-05 00:27:46 +01:00

43 lines
1 KiB
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: fmt lint test install_deps clean
default: all
all: fmt test
fmt:
$(info ******************** checking formatting ********************)
@test -z $(shell gofmt -l $(SRC)) || (gofmt -d $(SRC); exit 1)
lint:
$(info ******************** running lint tools ********************)
golangci-lint run -v
test: install_deps
$(info ******************** running tests ********************)
go test -v ./...
richtest: install_deps
$(info ******************** running tests with kyoh86/richgo ********************)
richgo test -v ./...
install_deps:
$(info ******************** downloading dependencies ********************)
go get -v ./...
clean:
rm -rf $(BIN)
i18n_extract:
goi18n extract -outdir translations
goi18n merge -outdir translations translations/*
i18n_merge:
goi18n merge -outdir translations translations/*