Makefile: consistency renaming: check_all -> check-all

This commit is contained in:
Aliaksandr Valialkin 2019-08-13 21:31:13 +03:00
parent ec1b185991
commit 06c2c25544
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ before_install:
- GO111MODULE=off go get -u github.com/kisielk/errcheck - GO111MODULE=off go get -u github.com/kisielk/errcheck
script: script:
- make check_all - make check-all
- git diff --exit-code - git diff --exit-code
- make test-full - make test-full
- make test-pure - make test-pure

View file

@ -50,7 +50,7 @@ errcheck: install-errcheck
install-errcheck: install-errcheck:
which errcheck || GO111MODULE=off go get -u github.com/kisielk/errcheck which errcheck || GO111MODULE=off go get -u github.com/kisielk/errcheck
check_all: fmt vet lint errcheck golangci-lint check-all: fmt vet lint errcheck golangci-lint
test: test:
GO111MODULE=on go test -tags=integration -mod=vendor ./lib/... ./app/... GO111MODULE=on go test -tags=integration -mod=vendor ./lib/... ./app/...