mirror of
https://gitlab.crans.org/bde/nk20
synced 2024-11-26 10:27:07 +00:00
22 lines
255 B
YAML
22 lines
255 B
YAML
image: python:3.6
|
|
|
|
stages:
|
|
- test
|
|
|
|
before_script:
|
|
- pip install tox
|
|
|
|
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
|