From b30c1406484641c8ed773c0ac762197f8dc8b514 Mon Sep 17 00:00:00 2001 From: Jason Hu Date: Mon, 1 Apr 2019 17:42:04 -0700 Subject: [PATCH] Require static-check success first for rest of workflow (#22635) * Require static-check success first * Update config.yml --- .circleci/config.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b4f22601bb5..9c9d75d934b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -213,18 +213,26 @@ workflows: build: jobs: - static-check - - pre-install-all-requirements + - pre-install-all-requirements: + requires: + - static-check - pylint: requires: - pre-install-all-requirements - pre-test: name: pre-test 3.5.5 + requires: + - static-check python: 3.5.5-stretch - pre-test: name: pre-test 3.6 + requires: + - static-check python: 3.6-stretch - pre-test: name: pre-test 3.7 + requires: + - static-check python: 3.7-stretch - test: name: test 3.5.5