20 lines
269 B
YAML
20 lines
269 B
YAML
version: 2
|
|
|
|
jobs:
|
|
build_and_test:
|
|
docker:
|
|
- image: circleci/python:latest
|
|
|
|
steps:
|
|
- checkout
|
|
|
|
- run: python3 -m pip install --user tox
|
|
- run: python3 -m tox
|
|
|
|
|
|
|
|
workflows:
|
|
version: 2
|
|
build_and_test:
|
|
jobs:
|
|
- build_and_test
|