syng/.gitlab-ci.yml

17 lines
281 B
YAML
Raw Permalink Normal View History

image: python:3-alpine
variables:
MYPYPATH: "stubs/"
mypy:
stage: test
2022-12-04 15:56:19 +01:00
script:
- pip install mypy types-Pillow types-PyYAML --quiet
- mypy syng --strict
ruff:
stage: test
script:
- pip install ruff --quiet
2023-12-18 18:59:25 +01:00
- ruff syng