Add .circleci/config.yml

circleci-project-setup
David Wilson 4 years ago
parent cc8f9a0169
commit a96ba61d32

@ -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
Loading…
Cancel
Save