Adding circleci

This commit is contained in:
2020-11-16 09:26:42 -03:00
parent bead225a73
commit 2dc3a4d074

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