diff --git a/.circleci/config.yml b/.circleci/config.yml index 11045c9..1747604 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,13 +10,28 @@ workflows: version: 2 ci: jobs: - - checkout + - checkout: + filters: + branches: + only: /.*/ + tags: + only: /.*/ - linting: requires: - checkout + filters: + branches: + only: /.*/ + tags: + only: /.*/ - testing: requires: - checkout + filters: + branches: + only: /.*/ + tags: + only: /.*/ - build: requires: - testing @@ -24,6 +39,8 @@ workflows: filters: tags: ignore: /^v[0-9]+(\.[0-9]+)*$/ + branches: + only: /.*/ - publishing: requires: - testing