21 lines
464 B
YAML
21 lines
464 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
|
|
- black .
|
|
|
|
static_analysis:
|
|
image: mquade/poetry:3.9-1.1.11
|
|
commands:
|
|
- poetry config virtualenvs.create false
|
|
- poetry install
|
|
- mypy .
|