1
0
mirror of https://gitlab.crans.org/mediatek/med.git synced 2025-02-06 06:53:04 +00:00
med/.gitlab-ci.yml
2020-02-18 21:34:12 +01:00

28 lines
344 B
YAML

image: python:3.6
stages:
- test
before_script:
- pip install tox
python35:
image: python:3.5
stage: test
script: tox -e py35
python36:
image: python:3.6
stage: test
script: tox -e py36
python37:
image: python:3.7
stage: test
script: tox -e py37
linters:
stage: test
script: tox -e linters
allow_failure: true