github.com/go-playground/webhooks/v6@v6.3.0/Makefile (about) 1 all: lint test 2 3 lint: linters-install 4 golangci-lint run --timeout 5m 5 6 test: 7 go test -covermode=atomic -race ./... 8 9 .PHONY: test lint linters-install 10 .DEFAULT_GOAL := all