https://github.com/spf13/cobra
Revision bd914e58d69d65e494b45bdb40e90ca816b92fcc authored by Pedro Mota on 12 March 2024, 10:42:46 UTC, committed by GitHub on 12 March 2024, 10:42:46 UTC
ioutils.ReadAll is deprecated since Go 1.16. This commit replaces it with
io.ReadAll. See https://pkg.go.dev/io/ioutil\#ReadAll for reference

Issue #2119
1 parent 1f80fa2
Raw File
Tip revision: bd914e58d69d65e494b45bdb40e90ca816b92fcc authored by Pedro Mota on 12 March 2024, 10:42:46 UTC
fix: remove deprecated io/ioutils package (#2120)
Tip revision: bd914e5
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)
back to top