med/.gitlab-ci.yml

23 lines
277 B
YAML

image: python:3.8
stages:
- test
before_script:
- pip install tox
python37:
image: python:3.7
stage: test
script: tox -e py37
python38:
image: python:3.8
stage: test
script: tox -e py37
linters:
stage: test
script: tox -e linters
allow_failure: true