syng/.gitlab-ci.yml

14 lines
223 B
YAML
Raw Normal View History

image: python:3-alpine
mypy:
stage: test
2022-12-04 15:56:19 +01:00
script:
2024-09-26 17:36:57 +02:00
- pip install . --quiet
- mypy syng --strict
ruff:
stage: test
script:
- pip install ruff --quiet
2024-07-09 22:11:33 +00:00
- ruff check syng