From 753ee4d48563f638591bd93cee3ac3369fe4a032 Mon Sep 17 00:00:00 2001 From: Mike Shoup Date: Wed, 2 Jan 2019 14:36:43 -0700 Subject: [PATCH] Run build steps on tags --- .circleci/config.yml | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2a7a23b..916aeef 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -99,13 +99,28 @@ workflows: version: 2 test: jobs: - - test-py35 - - test-py36 - - test-py37 + - test-py35: + filters: + tags: + only: /.*/ + - test-py36: + filters: + tags: + only: /.*/ + - test-py37: + filters: + tags: + only: /.*/ - codecov: requires: - test-py37 - - style + filters: + tags: + only: /.*/ + - style: + filters: + tags: + only: /.*/ - pypi: requires: - test-py35