habitmove/.woodpecker.yml
Marty Oehme 660e8e418a
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Add woodpecker file
2022-01-18 18:08:24 +01:00

22 lines
396 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:
- poetry run pytest
code_lint:
image: python:3.9
commands:
- poetry run black .
static_analysis:
image: python:3.9
commands:
- poetry run mypy .