diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..fdb00f5 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,22 @@ +version: 2.1 + +orbs: + python: circleci/python@0.2.1 + +jobs: + Python: + executor: python/default + working_directory: ~/flask/app/ + steps: + - checkout + - python/load-cache + - python/install-deps + - python/save-cache + - run: + command: ./app.py + name: App + +workflows: + main: + jobs: + - Python