From 5f5bd88f50207a9b53b78de2387c165a3e8a46fb Mon Sep 17 00:00:00 2001 From: Youssef Touggani Date: Thu, 14 Jan 2021 20:58:01 +0100 Subject: [PATCH] :construction: reindentation du fichier de config --- .circleci/config.yml | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 214a52f..7735067 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,12 +8,18 @@ jobs: - 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 + 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" \ No newline at end of file + key: deps-{{ checksum "requirements/dev.txt"}}-{{ .Environment.CACHE_VERSION }} + paths: + - "venv" + +workflows: + version: 1 + tp: + jobs: + - build \ No newline at end of file