From 41af01d4c31b37d50455ab895bf6cc377b49ee40 Mon Sep 17 00:00:00 2001 From: Gianni GIUDICE Date: Tue, 12 Jan 2021 15:19:46 +0100 Subject: [PATCH] :bug: Correction yaml non parsable --- .circleci/config.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 683aab0..e2e3ccc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,15 +1,16 @@ version: 2 -jobs: - build: - docker: - - image: circleci/python:3.9 - steps: - - checkout - - run: - command: pip install -r requirements/dev.txt + jobs: + build: + docker: + - image: circleci/python:3.9 + steps: + - checkout + - run: + name: Installation des dépendances python + command: pip install -r requirements/dev.txt workflows: version: 2 build-test: jobs: - - build + - build \ No newline at end of file