dotfiles/Makefile

46 lines
903 B
Makefile
Raw Normal View History

2023-02-25 17:06:32 +00:00
.PHONY: all test test-color coverage coverage-cli coverate-html lint format build clean
2022-07-04 05:37:10 +00:00
2023-01-22 04:51:44 +00:00
all:
go mod tidy
2023-10-28 19:45:23 +00:00
$(MAKE) format
2023-01-22 04:51:44 +00:00
$(MAKE) test-color
$(MAKE) lint
2023-02-25 16:24:26 +00:00
$(MAKE) build
$(MAKE) clean
2022-07-04 05:37:10 +00:00
test:
2022-07-30 16:09:57 +00:00
go test -race -failfast ./...
2022-07-04 05:37:10 +00:00
test-color:
# go install github.com/haunt98/go-test-color@latest
go-test-color -race -failfast ./...
coverage:
go test -coverprofile=coverage.out ./...
2023-01-22 04:51:44 +00:00
coverage-cli:
$(MAKE) coverage
go tool cover -func=coverage.out
2023-01-22 04:51:44 +00:00
coverage-html:
$(MAKE) coverage
go tool cover -html=coverage.out
2022-07-04 05:37:10 +00:00
lint:
golangci-lint run ./...
format:
# go install github.com/haunt98/gofimports/cmd/gofimports@latest
# go install mvdan.cc/gofumpt@latest
# go install mvdan.cc/sh/v3/cmd/shfmt@latest
2023-01-22 04:51:44 +00:00
gofimports -w --company github.com/make-go-great,github.com/haunt98 .
gofumpt -w -extra .
shfmt -w -ci -i 4 ./scripts ./data/zsh
build:
2023-02-25 16:24:26 +00:00
$(MAKE) clean
go build ./cmd/dot
2023-02-25 16:24:26 +00:00
clean:
rm -rf dot