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
618 B
25 lines
618 B
version: 1
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/python:3.9-buster-node-browsers
|
|
steps:
|
|
- checkout
|
|
- restore_cache:
|
|
key: deps-{{ checksum "requirements/dev.txt"}}-{{ .Environment.CACHE_VERSION }}
|
|
- run:
|
|
name: 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
|