22 lines
363 B
YAML
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 .
|