Skip to content

Commit

Permalink
Always do check for tags
Browse files Browse the repository at this point in the history
  • Loading branch information
mhemeryck committed Mar 20, 2019
1 parent 2c11b4d commit 917645a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
14 changes: 12 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,18 +93,28 @@ workflows:
version: 2
build_test:
jobs:
- build
- build:
filters:
tags:
only: /.*/
- lint:
requires:
- build
filters:
tags:
only: /.*/
- test:
requires:
- build
filters:
tags:
only: /.*/
- deploy:
requires:
- lint
- test
filters:
tags:
only: /[0-9]+(\.[0-9]+)*/
only: /.*/
branches:
ignore: /.*/
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def run(self):

def readme():
"""print long description"""
with open("README.rst") as f:
with open("README.md") as f:
return f.read()


Expand Down

0 comments on commit 917645a

Please sign in to comment.