mirror of
https://github.com/labstack/echo.git
synced 2025-09-16 09:16:29 +02:00
* Use Go 1.25 in CI * Disable test: in Go 1.24 and earlier http.NoBody would result ContentLength=-1 but as of Go 1.25 http.NoBody would result ContentLength=0 I am too lazy to bother documenting this as 2 version specific tests.
38 lines
1.2 KiB
Makefile
38 lines
1.2 KiB
Makefile
PKG := "github.com/labstack/echo"
|
|
PKG_LIST := $(shell go list ${PKG}/...)
|
|
|
|
tag:
|
|
@git tag `grep -P '^\tversion = ' echo.go|cut -f2 -d'"'`
|
|
@git tag|grep -v ^v
|
|
|
|
.DEFAULT_GOAL := check
|
|
check: lint vet race ## Check project
|
|
|
|
init:
|
|
@go install golang.org/x/lint/golint@latest
|
|
@go install honnef.co/go/tools/cmd/staticcheck@latest
|
|
|
|
lint: ## Lint the files
|
|
@staticcheck ${PKG_LIST}
|
|
@golint -set_exit_status ${PKG_LIST}
|
|
|
|
vet: ## Vet the files
|
|
@go vet ${PKG_LIST}
|
|
|
|
test: ## Run tests
|
|
@go test -short ${PKG_LIST}
|
|
|
|
race: ## Run tests with data race detector
|
|
@go test -race ${PKG_LIST}
|
|
|
|
benchmark: ## Run benchmarks
|
|
@go test -run="-" -bench=".*" ${PKG_LIST}
|
|
|
|
help: ## Display this help screen
|
|
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
|
|
|
goversion ?= "1.22"
|
|
docker_user ?= "1000"
|
|
test_version: ## Run tests inside Docker with given version (defaults to 1.22 oldest supported). Example: make test_version goversion=1.22
|
|
@docker run --rm -it --user $(docker_user) -e HOME=/tmp -e GOCACHE=/tmp/go-cache -v $(shell pwd):/project golang:$(goversion) /bin/sh -c "mkdir -p /tmp/go-cache /tmp/.cache && cd /project && make init check"
|