From a49414615a607aac2d585f1d9df22b267b12d691 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Miri=C4=87?= Date: Wed, 12 Aug 2020 10:45:03 +0200 Subject: [PATCH] Add CircleCI check for vendored modules being up to date If this works in all cases, it would solve https://github.com/loadimpact/k6/pull/1584#discussion_r469092723 . --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index d4eb80bfe1e5..bf653fe9c39f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,6 +10,7 @@ jobs: name: Check dependencies command: | go version + diff <(go mod vendor -v 2>&1 | grep -v 'go: downloading') vendor/modules.txt go mod verify lint: