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