gofimports/Makefile

49 lines
867 B
Makefile
Raw Permalink Normal View History

2023-01-17 17:04:49 +00:00
.PHONY: all test test-color coverage coverage-cli coverate-html lint format build clean docs
2022-11-24 16:16:32 +00:00
all:
2022-11-24 16:16:32 +00:00
go mod tidy
$(MAKE) test-color
$(MAKE) lint
$(MAKE) format
2023-02-25 16:36:39 +00:00
$(MAKE) build
$(MAKE) clean
2022-11-24 16:16:32 +00:00
test:
go test -race -failfast ./...
test-color:
go install github.com/haunt98/go-test-color@latest
go-test-color -race -failfast ./...
coverage:
go test -coverprofile=coverage.out ./...
coverage-cli:
$(MAKE) coverage
2022-11-24 16:16:32 +00:00
go tool cover -func=coverage.out
coverage-html:
$(MAKE) coverage
2022-11-24 16:16:32 +00:00
go tool cover -html=coverage.out
lint:
golangci-lint run ./...
format:
$(MAKE) build
2022-11-24 16:16:32 +00:00
go install mvdan.cc/gofumpt@latest
./gofimports -w --company github.com/make-go-great,github.com/haunt98 .
gofumpt -w -extra .
$(MAKE) clean
build:
2023-02-25 16:36:39 +00:00
$(MAKE) clean
go build ./cmd/gofimports
2023-01-17 03:27:31 +00:00
clean:
rm -rf ./gofimports
2023-01-17 17:04:49 +00:00
docs:
go install go101.org/golds@latest
golds -theme=dark ./...