config.yml 396 B

123456789101112131415161718192021222324
  1. version: 2.1
  2. orbs:
  3. python: circleci/python@0.2.1
  4. jobs:
  5. build-and-test:
  6. executor: python/default
  7. steps:
  8. - checkout
  9. - python/load-cache
  10. - python/install-deps
  11. - python/save-cache
  12. - run:
  13. command: ./manage.py test
  14. name: Test
  15. - run:
  16. command: echo Hi
  17. name: Hi
  18. workflows:
  19. main:
  20. jobs:
  21. - build-and-test