twnet_parser/.gitlab-ci.yml

25 lines
340 B
YAML

image: python:3.10.9
stages:
- test
- lint
pytest:
stage: test
script:
- pip install -r requirements/dev.txt
- pytest .
pylint:
stage: lint
script:
- pip install -r requirements/dev.txt
- pylint twnet_parser/
types:
stage: lint
script:
- pip install -r requirements/dev.txt
- mypy twnet_parser/