From bb44f73a7a6cf60edfe24cc6ebe5eae44163b5da Mon Sep 17 00:00:00 2001 From: Ali Yousuf Date: Sun, 20 May 2018 18:39:39 +0500 Subject: [PATCH] Add tag filter to `test` job The tag filter in `test` job is needed here because the `test` job is required by `release` job Signed-off-by: Ali Yousuf --- .circleci/config.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2843e59..5c383da 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -48,7 +48,10 @@ workflows: build-test-and-release: jobs: - build - - test + - test: + filters: + tags: + only: /^v[0-9]+\.[0-9]+\.[0-9]+$/ - coverage: requires: - test @@ -59,4 +62,4 @@ workflows: branches: ignore: /.*/ tags: - only: /^v[0-9]+\.[0-9]+\.[0-9]+$/ # vx.x.x + only: /^v[0-9]+\.[0-9]+\.[0-9]+$/