Skip to content

Commit

Permalink
Add .circleci/config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
whimboo committed Dec 26, 2020
1 parent 6ccc5a9 commit 4559239
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .circleci/config.yml
@@ -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

0 comments on commit 4559239

Please sign in to comment.