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