workgroups/Makefile
Marvin Preuss 15e245d433
All checks were successful
continuous-integration/drone/push Build is passing
docs: readme
2021-09-27 10:46:34 +02:00

51 lines
824 B
Makefile

.PHONY: build
build:
goreleaser build --rm-dist --snapshot
.PHONY: release
release:
goreleaser release --rm-dist --snapshot --skip-publish
.PHONY: generate
generate:
go generate
.PHONY: lint
lint:
golangci-lint run --enable-all --disable=exhaustivestruct,godox
.PHONY: test
test:
go test -v \
-race \
-coverprofile coverage.out \
./...
go tool cover -func coverage.out
.PHONY: tidy
tidy:
go mod tidy
go mod vendor
.PHONY: coverage
coverage:
gocover-cobertura < coverage.out > coverage.xml
.PHONY: install-tools
install-tools:
go list -f '{{range .Imports}}{{.}} {{end}}' tools.go | xargs go install -v
.PHONY: readme
readme:
goreadme \
-constants \
-credit=false \
-types \
-methods \
-variabless \
> README.md
.PHONY: setup-githooks
setup-githooks:
git config core.hooksPath githooks