habitmove/.woodpecker.yml
Marty Oehme 462068f228
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Update woodpecker
2022-01-18 18:34:48 +01:00

23 lines
515 B
YAML

pipeline:
unit_tests:
image: mquade/poetry:3.9-1.1.11
commands:
- poetry config virtualenvs.create false
- poetry install
- pytest
code_lint:
image: mquade/poetry:3.9-1.1.11
commands:
- poetry config virtualenvs.create false
- poetry install
- pip install black
- black .
static_analysis:
image: mquade/poetry:3.9-1.1.11
commands:
- poetry config virtualenvs.create false
- poetry install
- pip install mypy
- mypy .