diff options
| author | Taras Madan <tarasmadan@google.com> | 2024-05-08 14:17:02 +0200 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2024-05-08 12:48:31 +0000 |
| commit | 0ac372459159c5632ae7ce9778e9be771708a9b3 (patch) | |
| tree | 9c6a979cada5c22b46dd3c5ad4b0d706f2252272 /vendor/github.com/chigopher/pathlib/Makefile | |
| parent | 69141a688b25b2d33daf570507dbb13a3c80e5d9 (diff) | |
vendor: go mod vendor
We don't want to download mockery every time.
Diffstat (limited to 'vendor/github.com/chigopher/pathlib/Makefile')
| -rw-r--r-- | vendor/github.com/chigopher/pathlib/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
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 |
