Browse Source

💚 update config.yml

dependabot/pip/requirements/sqlalchemy-1.3.0
LecomteAdrien 6 years ago
parent
commit
3f2055ca1c
  1. 4
      .circleci/config.yml

4
.circleci/config.yml

@ -1,4 +1,4 @@
version: 2 # use CircleCI 2.0
version: 2 # use CircleCI 2.0//////
jobs: # A basic unit of work in a run jobs: # A basic unit of work in a run
build: # runs not using Workflows must have a `build` job as entry point build: # runs not using Workflows must have a `build` job as entry point
docker: # run the steps with Docker docker: # run the steps with Docker
@ -27,6 +27,8 @@ jobs: # A basic unit of work in a run
key: deps9-{{ .Branch }}-{{ checksum "Pipfile.lock" }} key: deps9-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
- run: - run:
command: | command: |
sudo pip install pipenv
pipenv install
pip install -r requirements/dev.txt --user pip install -r requirements/dev.txt --user
- save_cache: # cache Python dependencies using checksum of Pipfile as the cache-key - save_cache: # cache Python dependencies using checksum of Pipfile as the cache-key
key: deps9-{{ .Branch }}-{{ checksum "Pipfile.lock" }} key: deps9-{{ .Branch }}-{{ checksum "Pipfile.lock" }}

Loading…
Cancel
Save