techrec/.gitlab-ci.yml
2021-09-28 23:56:27 +02:00

20 lines
264 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 nose
- pip install -r requirements.txt
script:
- nosetests