1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2024-11-26 18:37:12 +00:00
nk20/.gitlab-ci.yml
2020-08-09 19:34:01 +02:00

27 lines
415 B
YAML

image: python:3.8
stages:
- test
- quality-assurance
before_script:
- pip install tox
py37-django22:
image: python:3.7
stage: test
script: tox -e py37-django22
py38-django22:
image: python:3.8
stage: test
script: tox -e py38-django22
linters:
image: python:3.8
stage: quality-assurance
script: tox -e linters
# Be nice to new contributors, but please use `tox`
allow_failure: true