2022-12-04 16:27:25 +01:00
|
|
|
image: python:3-alpine
|
|
|
|
|
|
|
|
mypy:
|
|
|
|
stage: test
|
2022-12-04 15:56:19 +01:00
|
|
|
script:
|
2024-09-26 16:49:17 +00:00
|
|
|
- pip install poetry
|
|
|
|
- poetry install
|
2024-09-26 16:52:04 +00:00
|
|
|
- poetry run mypy syng --strict
|
2022-12-04 16:27:25 +01:00
|
|
|
|
2023-11-01 18:09:24 +01:00
|
|
|
ruff:
|
2022-12-04 16:27:25 +01:00
|
|
|
stage: test
|
|
|
|
script:
|
2024-09-26 16:49:17 +00:00
|
|
|
- pip install ruff --quiet
|
2024-07-09 22:11:33 +00:00
|
|
|
- ruff check syng
|