2022-12-04 15:56:19 +01:00
|
|
|
test:mypy:
|
|
|
|
image: python:3
|
|
|
|
script:
|
|
|
|
- pip install mypy --quiet
|
2022-12-04 16:13:00 +01:00
|
|
|
- pip install pylint --quiet
|
|
|
|
- pip install -e . --quiet
|
2022-12-04 15:56:19 +01:00
|
|
|
- mypy syng --strict
|
2022-12-04 16:13:00 +01:00
|
|
|
- pylint syng
|