syng/.gitlab-ci.yml
Christoph Stahl f73eb20955 Fixed python version to 3.12 for mypy and ruff checking.
It seems, that scipy is not compatible with 3.13 yet
2024-10-09 16:22:18 +02:00

14 lines
257 B
YAML

image: python:3.12
mypy:
stage: test
script:
- pip install poetry
- poetry install --all-extras
- poetry run mypy syng --strict
ruff:
stage: test
script:
- pip install ruff --quiet
- ruff check syng