Add .circleci/config.yml
This commit is contained in:
parent
d8c0c37506
commit
b16f7ba302
22
.circleci/config.yml
Normal file
22
.circleci/config.yml
Normal file
@ -0,0 +1,22 @@
|
||||
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…
Reference in New Issue
Block a user