Browse Source
Merge pull request #5 from PierreDarcas/circleci-project-setup
Add .circleci/config.yml
tests
PierreD
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
21 additions and
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 |