123456789101112131415161718192021222324 |
- 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
- - run:
- command: echo Hi
- name: Hi
- workflows:
- main:
- jobs:
- - build-and-test
|