aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/chigopher/pathlib/Makefile
blob: 262cbaa02add9eba20d1536c9f9a3df90983a0e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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