HPI/.circleci/config.yml
2020-01-24 10:43:46 +00:00

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