19 lines
267 B
YAML
19 lines
267 B
YAML
|
version: 2.1
|
||
|
|
||
|
orbs:
|
||
|
python: circleci/python@1.0.0
|
||
|
|
||
|
jobs:
|
||
|
build-and-test:
|
||
|
executor: python/default
|
||
|
steps:
|
||
|
- checkout
|
||
|
- python/install-packages:
|
||
|
pkg-manager: pip
|
||
|
# TODO: Tests
|
||
|
|
||
|
workflows:
|
||
|
main:
|
||
|
jobs:
|
||
|
- build-and-test
|