13 lines
223 B
YAML
13 lines
223 B
YAML
image: python:3-alpine
|
|
|
|
mypy:
|
|
stage: test
|
|
script:
|
|
- pip install . --quiet
|
|
- mypy syng --strict
|
|
|
|
ruff:
|
|
stage: test
|
|
script:
|
|
- pip install ruff --quiet
|
|
- ruff check syng
|