changeloguru/Makefile

44 lines
835 B
Makefile
Raw Normal View History

2023-02-25 17:05:36 +00:00
.PHONY: all test test-color coverage coverage-cli coverate-html lint format build clean
2022-07-03 14:34:46 +00:00
2023-01-22 04:54:18 +00:00
all:
2022-08-15 17:51:21 +00:00
go mod tidy
2023-10-28 19:53:04 +00:00
$(MAKE) format
2023-01-22 04:54:18 +00:00
$(MAKE) test-color
$(MAKE) lint
2023-02-25 17:05:36 +00:00
$(MAKE) build
$(MAKE) clean
2021-11-06 07:37:03 +00:00
test:
2022-08-15 17:51:21 +00:00
go test -race -failfast ./...
2021-11-06 07:37:03 +00:00
2022-08-15 17:51:21 +00:00
test-color:
2024-02-10 01:47:44 +00:00
# go install github.com/haunt98/go-test-color@latest
2022-08-15 17:51:21 +00:00
go-test-color -race -failfast ./...
coverage:
go test -coverprofile=coverage.out ./...
2023-01-22 04:54:18 +00:00
coverage-cli:
$(MAKE) coverage
2021-11-06 07:37:03 +00:00
go tool cover -func=coverage.out
2023-01-22 04:54:18 +00:00
coverage-html:
$(MAKE) coverage
2021-11-06 07:37:03 +00:00
go tool cover -html=coverage.out
lint:
golangci-lint run ./...
2022-09-04 16:30:16 +00:00
2022-11-27 18:28:59 +00:00
format:
2024-02-10 01:47:44 +00:00
# go install github.com/haunt98/gofimports/cmd/gofimports@latest
# go install mvdan.cc/gofumpt@latest
2023-02-25 17:05:36 +00:00
gofimports -w --company github.com/make-go-great,github.com/haunt98 .
2022-11-27 18:28:59 +00:00
gofumpt -w -extra .
2022-09-04 16:30:16 +00:00
build:
2023-02-25 17:05:36 +00:00
$(MAKE) clean
go build ./cmd/changeloguru
clean:
rm -rf changeloguru