HPI/.circleci/config.yml
2019-10-11 21:47:22 +01:00

27 lines
472 B
YAML

version: 2
jobs:
build_and_test:
docker:
- image: circleci/python:latest
steps:
- checkout
# TODO FIXME switch to tox?
- run: pip3 install --user mypy pylint
- run: ./demo.py
# - run: python3 -m mypy --namespace-packages my
# - run: python3 -m pylint -E my
# TODO need to keep full my_configuration.py as example? to dummy run CI
workflows:
version: 2
build_and_test:
jobs:
- build_and_test