Skip to content

Commit

Permalink
Adds a pipenv-based dep check
Browse files Browse the repository at this point in the history
  • Loading branch information
mhemeryck committed May 2, 2019
1 parent 85e6ccf commit 17085ec
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,18 @@ jobs:
name: Coverage upload
command: |
pipenv run coveralls
check:
docker:
- image: circleci/python:3.7.2

steps:
- checkout
- *restore_caches
- *install_deps
- run:
name: Pipenv dependencies check
command: |
pipenv check
deploy:
docker:
- image: circleci/python:3.7.2
Expand Down Expand Up @@ -109,6 +120,12 @@ workflows:
filters:
tags:
only: /.*/
- check:
requires:
- build
filters:
tags:
only: /.*/
- deploy:
requires:
- lint
Expand Down

0 comments on commit 17085ec

Please sign in to comment.