Yield generated for bb9dc909-4d51-4ec2-83d5-ffa2878afb28
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
609 B

version: 2
jobs:
build:
docker:
- image: circleci/python:3.9
steps:
- checkout
- restore_cache:
key: deps-{{ checksum "requirements/dev.txt"}}-{{ .Environment.CACHE_VERSION }}
- run:
name: Installation des dépendances python
command: |
python3 -m venv venv
. venv/bin/activate
pip install -r requirements/dev.txt
-save_cache:
key: deps-{{ checksum "requirements/dev.txt"}}-{{ .Environment.CACHE_VERSION }}
paths:
- "venv"
workflows:
version: 2
tp:
jobs:
- build