Add .circleci/config.yml

This commit is contained in:
Kevin Bock 2020-03-12 23:12:36 -04:00
parent 502900e3e5
commit cae8a0d7ae
1 changed files with 21 additions and 0 deletions

21
.circleci/config.yml Normal file
View File

@ -0,0 +1,21 @@
version: 2.1
orbs:
python: circleci/python@0.2.1
jobs:
build-and-test:
executor: python/default
steps:
- checkout
- python/load-cache
- python/install-deps
- python/save-cache
- run:
command: ./manage.py test
name: Test
workflows:
main:
jobs:
- build-and-test