syng/.gitlab-ci.yml

14 lines
237 B
YAML

image: python:3-alpine
mypy:
stage: test
script:
- pip install poetry
- poetry install
- mypy syng --strict
ruff:
stage: test
script:
- pip install ruff --quiet
- ruff check syng