2022-05-13 13:30:22 +00:00
|
|
|
default: build
|
|
|
|
|
|
|
|
fmt:
|
|
|
|
@echo "✓ Formatting source code with goimports ..."
|
|
|
|
@goimports -w $(shell find . -type f -name '*.go' -not -path "./vendor/*")
|
|
|
|
@echo "✓ Formatting source code with gofmt ..."
|
|
|
|
@gofmt -w $(shell find . -type f -name '*.go' -not -path "./vendor/*")
|
|
|
|
|
|
|
|
lint: vendor
|
|
|
|
@echo "✓ Linting source code with https://staticcheck.io/ ..."
|
|
|
|
@staticcheck ./...
|
|
|
|
|
|
|
|
test: lint
|
|
|
|
@echo "✓ Running tests ..."
|
|
|
|
@gotestsum --format pkgname-and-test-fails --no-summary=skipped --raw-command go test -v -json -short -coverprofile=coverage.txt ./...
|
|
|
|
|
|
|
|
coverage: test
|
|
|
|
@echo "✓ Opening coverage for unit tests ..."
|
|
|
|
@go tool cover -html=coverage.txt
|
|
|
|
|
|
|
|
build: vendor
|
|
|
|
@echo "✓ Building source code with go build ..."
|
|
|
|
@go build -mod vendor
|
|
|
|
|
2022-05-14 17:56:09 +00:00
|
|
|
snapshot:
|
|
|
|
@echo "✓ Building dev snapshot"
|
2023-04-20 09:59:34 +00:00
|
|
|
@goreleaser build --snapshot --clean --single-target
|
2022-05-14 17:56:09 +00:00
|
|
|
|
2022-05-13 13:30:22 +00:00
|
|
|
vendor:
|
|
|
|
@echo "✓ Filling vendor folder with library code ..."
|
|
|
|
@go mod vendor
|
|
|
|
|
2023-10-16 15:32:49 +00:00
|
|
|
.PHONY: build vendor coverage test lint fmt
|
|
|
|
|