1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-02-05 23:03:02 +00:00
nk20/.gitlab-ci.yml

32 lines
496 B
YAML
Raw Normal View History

image: python:3.8
2019-07-08 12:55:48 +02:00
stages:
- test
2020-02-18 20:58:01 +01:00
- quality-assurance
2019-07-08 12:55:48 +02:00
before_script:
- pip install tox
2020-02-18 20:58:01 +01:00
py36-django22:
2019-07-08 12:55:48 +02:00
image: python:3.6
stage: test
2020-02-18 20:58:01 +01:00
script: tox -e py36-django22
2019-07-08 12:55:48 +02:00
2020-02-18 20:58:01 +01:00
py37-django22:
2019-07-08 12:55:48 +02:00
image: python:3.7
stage: test
2020-02-18 20:58:01 +01:00
script: tox -e py37-django22
2019-07-08 12:55:48 +02:00
py38-django22:
image: python:3.8
stage: test
script: tox -e py38-django22
2019-07-08 12:55:48 +02:00
linters:
image: python:3.8
2020-02-18 20:58:01 +01:00
stage: quality-assurance
2019-07-08 12:55:48 +02:00
script: tox -e linters
2020-02-18 20:58:01 +01:00
# Be nice to new contributors, but please use `tox`
allow_failure: true