Skip to content

Commit

Permalink
fluent API for binding
Browse files Browse the repository at this point in the history
  • Loading branch information
aldas committed Dec 23, 2020
1 parent 2b36b3d commit 73a401d
Show file tree
Hide file tree
Showing 4 changed files with 3,814 additions and 0 deletions.
30 changes: 30 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
PKG := "github.com/labstack/echo/v4"
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 get -u golang.org/x/lint/golint

lint: ## Lint the files
@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}

check: lint vet race ## Check project

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}'
Loading

0 comments on commit 73a401d

Please sign in to comment.