Add golangci-lint to git pre-push hook

This commit is contained in:
Deluan 2020-05-07 11:57:07 -04:00
parent 06ab88415a
commit 9a854f6cc4
2 changed files with 9 additions and 5 deletions

View file

@ -41,11 +41,12 @@ setup:
.PHONY: setup .PHONY: setup
setup-dev: setup setup-dev: setup
@which wire || (echo "Installing Wire" && GO111MODULE=off go get -u github.com/google/wire/cmd/wire) @which wire || (echo "Installing Wire" && GO111MODULE=off go get -u github.com/google/wire/cmd/wire)
@which ginkgo || (echo "Installing Ginkgo" && GO111MODULE=off go get -u github.com/onsi/ginkgo/ginkgo) @which ginkgo || (echo "Installing Ginkgo" && GO111MODULE=off go get -u github.com/onsi/ginkgo/ginkgo)
@which goose || (echo "Installing Goose" && GO111MODULE=off go get -u github.com/pressly/goose/cmd/goose) @which goose || (echo "Installing Goose" && GO111MODULE=off go get -u github.com/pressly/goose/cmd/goose)
@which reflex || (echo "Installing Reflex" && GO111MODULE=off go get -u github.com/cespare/reflex) @which reflex || (echo "Installing Reflex" && GO111MODULE=off go get -u github.com/cespare/reflex)
@which lefthook || (echo "Installing Lefthook" && GO111MODULE=off go get -u github.com/Arkweid/lefthook) @which golangci-lint || (echo "Installing GolangCI-Lint" && GO111MODULE=off go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.23.0)
@which lefthook || (echo "Installing Lefthook" && GO111MODULE=off go get -u github.com/Arkweid/lefthook)
@lefthook install @lefthook install
.PHONY: setup .PHONY: setup

View file

@ -3,6 +3,9 @@ pre-push:
unit-tests: unit-tests:
tags: tests tags: tests
run: go test ./... run: go test ./...
lint:
tags: tests
run: golangci-lint run
pre-commit: pre-commit:
parallel: false parallel: false