From 0ac372459159c5632ae7ce9778e9be771708a9b3 Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Wed, 8 May 2024 14:17:02 +0200 Subject: vendor: go mod vendor We don't want to download mockery every time. --- vendor/github.com/chigopher/pathlib/Makefile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 vendor/github.com/chigopher/pathlib/Makefile (limited to 'vendor/github.com/chigopher/pathlib/Makefile') diff --git a/vendor/github.com/chigopher/pathlib/Makefile b/vendor/github.com/chigopher/pathlib/Makefile new file mode 100644 index 000000000..262cbaa02 --- /dev/null +++ b/vendor/github.com/chigopher/pathlib/Makefile @@ -0,0 +1,23 @@ +SHELL=bash + +.PHONY: all +all: fmt mocks test install docker + +.PHONY: fmt +fmt: + go fmt ./... + +.PHONY: test +test: + go test -v -coverprofile=coverage.txt ./... + +.PHONY: test.ci +test.ci: test fmt + +.PHONY: lint +lint: + go run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.52.2 run + +.PHONY: clean +clean: + rm -rf mocks \ No newline at end of file -- cgit mrf-deployment