/
githubmirror
/
cobra
Обзор
Документация
Войти
/
githubmirror
/
cobra
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Makefile
35 строк
941 B
Shudhanshu Singh
fix: resolve macOS test link failure and update lint rules (#2429)
11 июл 2026, 03:43
Не верифицирован
11 июл 2026, 03:43
adbc881
Код
Авторство
О чём код?
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 $(GO_TEST_FLAGS) ./... richtest: install_deps $(info ******************** running tests with kyoh86/richgo ********************) richgo test -v $(GO_TEST_FLAGS) ./... install_deps: $(info ******************** downloading dependencies ********************) go get -v ./... clean: rm -rf $(BIN)