Skip to content

Commit

Permalink
make circleci handle ci release from tags
Browse files Browse the repository at this point in the history
  • Loading branch information
maxandersen committed Nov 17, 2019
1 parent 545fa10 commit d311511
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .circleci/config.yml
Expand Up @@ -224,29 +224,48 @@ workflows:
- pre-install-all-requirements:
requires:
- static-check
filters:
tags:
only: /[0-9]+(\.[0-9]+)*/
- pylint:
requires:
- pre-install-all-requirements
filters:
tags:
only: /[0-9]+(\.[0-9]+)*/
- pre-test:
name: pre-test 3.6
requires:
- static-check
python: 3.6-stretch
filters:
tags:
only: /[0-9]+(\.[0-9]+)*/
- pre-test:
name: pre-test 3.7
requires:
- static-check
python: 3.7-stretch
filters:
tags:
only: /[0-9]+(\.[0-9]+)*/
- test:
name: test 3.6
requires:
- pre-test 3.6
python: 3.6-stretch
filters:
tags:
only: /[0-9]+(\.[0-9]+)*/
- test:
name: test 3.7
requires:
- pre-test 3.7
python: 3.7-stretch
filters:
tags:
only: /[0-9]+(\.[0-9]+)*/

# CircleCI does not allow failure yet
# - test:
# name: test 3.8
Expand Down

0 comments on commit d311511

Please sign in to comment.