From 23a134cde67d712f7d8ec68e2a9e8477be37cc6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl?= Date: Tue, 30 Mar 2021 17:32:46 +0200 Subject: [PATCH 1/2] ci: add missing 'make deps' steps --- .circleci/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index cb150a57..65a66d2f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -70,6 +70,7 @@ jobs: exit 1 fi - run: make install-tools + - run: make deps - run: make lint test: docker: @@ -77,6 +78,7 @@ jobs: steps: - checkout - run: make install-tools + - run: make deps - run: make test - run: name: Codecov upload From 172e51f53e323eedbaab073a58c332eac5281d95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl?= Date: Tue, 30 Mar 2021 17:38:45 +0200 Subject: [PATCH 2/2] ci: remove make deps step for unit tests --- .circleci/config.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 65a66d2f..07e4ae83 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -78,7 +78,6 @@ jobs: steps: - checkout - run: make install-tools - - run: make deps - run: make test - run: name: Codecov upload