somehttphandlers/Makefile

49 lines
966 B
Makefile

GO := go
ROOT_DIR := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
CACHE_DIR := $(ROOT_DIR)/.cache
GORELEASER := $(GO) run github.com/goreleaser/goreleaser@v1.3.1
export GOLANGCI_LINT_CACHE := $(CACHE_DIR)/golangci-lint
GOLANGCI_LINT := $(GO) run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.44.0
GOTESTSUM := $(GO) run gotest.tools/gotestsum@v1.7.0
.PHONY: lint
lint:
rm -rf $(GOLANGCI_LINT_CACHE)
$(GOLANGCI_LINT) run \
--enable-all \
--disable=godox,varnamelen \
--timeout 10m
.PHONY: tidy
tidy:
$(GO) mod tidy
$(GO) mod vendor
.PHONY: test
test:
$(GOTESTSUM) \
--junitfile report.xml \
-- \
-race \
-cover \
-coverprofile=coverage.out \
-tags=integration \
./... \
-timeout=120m
.PHONY: build
build:
$(GORELEASER) build --rm-dist --snapshot
.PHONY: release
release:
$(GORELEASER) release --rm-dist
.PHONY: release-snapshot
release-snapshot:
$(GORELEASER) release --rm-dist --snapshot --skip-publish