habitmove/.woodpecker.yml

22 lines
464 B
YAML
Raw Normal View History

2022-01-18 17:08:24 +00:00
pipeline:
2022-01-18 17:32:06 +00:00
unit_tests:
image: mquade/poetry:3.9-1.1.11
2022-01-18 17:08:24 +00:00
commands:
- poetry config virtualenvs.create false
- poetry install
2022-01-18 17:11:31 +00:00
- pytest
2022-01-18 17:08:24 +00:00
code_lint:
2022-01-18 17:32:06 +00:00
image: mquade/poetry:3.9-1.1.11
2022-01-18 17:08:24 +00:00
commands:
2022-01-18 17:32:06 +00:00
- poetry config virtualenvs.create false
- poetry install
2022-01-18 17:11:31 +00:00
- black .
2022-01-18 17:08:24 +00:00
static_analysis:
2022-01-18 17:32:06 +00:00
image: mquade/poetry:3.9-1.1.11
2022-01-18 17:08:24 +00:00
commands:
2022-01-18 17:32:06 +00:00
- poetry config virtualenvs.create false
- poetry install
2022-01-18 17:11:31 +00:00
- mypy .