From 051e24382e4e7144ae7233f9e32344897a7446b0 Mon Sep 17 00:00:00 2001 From: Mattia Bertorello Date: Tue, 8 Jan 2019 14:35:27 +0100 Subject: [PATCH] Support Dependabot PR It update only the Gopkg.toml and lock so it necessary to run the dep ensure --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b5a5795659f..d505f8c8ebc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,8 @@ script: - cd $GOPATH/src/github.com/arduino/arduino-cli # Check the dependency, -skip-lock may be useful because the version are not fixed but depends # from the branch master of the libraries so they change very often - - dep check + - dep check -skip-vendor + - dep ensure # Check if the code is formatted - $(exit $(go fmt ./... | wc -l)) # Run linter