From f1e87f497bfc1a5aaa7d594d2383521455251c54 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Wed, 4 Dec 2019 20:36:51 +0300 Subject: [PATCH] circleci: get submodules on checkout, fix failing tests --- .circleci/config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index ce20eb776..a69675b62 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -54,6 +54,8 @@ jobs: executor: go1_12 steps: - checkout + - run: git submodule sync + - run: git submodule update --init - gomod - run: go test -v -race ./... @@ -62,6 +64,8 @@ jobs: executor: go1_13 steps: - checkout + - run: git submodule sync + - run: git submodule update --init - gomod - run: go test -v -race ./... -coverprofile=coverage.txt -covermode=atomic - codecov/upload: