added circlci

This commit is contained in:
georgemihaila
2021-03-29 23:46:16 -05:00
parent 4c7b001592
commit 2b98cff6d0

View File

@@ -5,12 +5,14 @@ jobs:
- image: circleci/python:3.9.1
steps:
- checkout
- restore_cache:
key: deps1-{{ .Branch }}-{{ checksum "requirements/dev.txt" }}
- run:
name: Install Python deps in a venv
command: |
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
command: |
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
- save_cache:
key: deps1-{{ .Branch }}-{{ checksum "requirements/dev.txt" }}
paths: