1
0
mirror of https://gitlab.crans.org/mediatek/med.git synced 2024-12-26 16:22:23 +00:00
med/.gitlab-ci.yml
Yohann D'ANELLO 43b3b5ccfe Fix CI
2020-05-12 15:09:06 +02:00

33 lines
411 B
YAML

image: python:3.8
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
python38:
image: python:3.8
stage: test
script: tox -e py37
linters:
stage: test
script: tox -e linters
allow_failure: true