check vendor directory

This runs "dep check" to verify that the vendor directory is
up-to-date and meets expectations (= done with dep >= 0.5.0).
This commit is contained in:
Patrick Ohly
2019-03-27 17:39:43 +01:00
parent 849db0ad23
commit e6db50df7e
2 changed files with 15 additions and 0 deletions

View File

@@ -5,6 +5,11 @@ services:
matrix:
include:
- go: 1.11.1
before_script:
- mkdir -p bin
- wget https://github.com/golang/dep/releases/download/v0.5.1/dep-linux-amd64 -O bin/dep
- chmod u+x bin/dep
- export PATH=$PWD/bin:$PATH
script:
- make -k all test
after_success: