techrec/.gitlab-ci.yml
2021-09-29 00:30:31 +02:00

21 lines
282 B
YAML

image: python:3.7
stages:
- static
- test
mypy:
stage: static
before_script:
- pip install mypy
script:
- mypy techrec
test:
stage: test
before_script:
- pip install pytest
- pip install -r requirements.txt
- mkdir output
script:
- pytest