habitmove/.woodpecker.yml
Marty Oehme 8ac781a336
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Update woodpecker
2022-01-18 18:11:31 +01:00

22 lines
363 B
YAML

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