mirror of
https://github.com/mmatczuk/go-http-tunnel.git
synced 2026-05-15 14:16:17 -06:00
makefile: check if all dependencies are vendored
This commit is contained in:
parent
63d07990be
commit
39b8349371
1 changed files with 5 additions and 1 deletions
6
Makefile
6
Makefile
|
|
@ -9,7 +9,7 @@ fmt:
|
|||
@go fmt ./...
|
||||
|
||||
.PHONY: check
|
||||
check: .check-fmt .check-vet .check-lint .check-ineffassign .check-mega .check-misspell
|
||||
check: .check-fmt .check-vet .check-lint .check-ineffassign .check-mega .check-misspell .check-vendor
|
||||
|
||||
.PHONY: .check-fmt
|
||||
.check-fmt:
|
||||
|
|
@ -38,6 +38,10 @@ check: .check-fmt .check-vet .check-lint .check-ineffassign .check-mega .check-m
|
|||
.check-mega:
|
||||
@megacheck ./...
|
||||
|
||||
.PHONY: .check-vendor
|
||||
.check-vendor:
|
||||
@dep ensure -no-vendor -dry-run
|
||||
|
||||
.PHONY: test
|
||||
test:
|
||||
@echo "==> Running tests (race)..."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue