plateforme-corres2math/.gitlab-ci.yml

21 lines
397 B
YAML

stages:
- test
- quality-assurance
py38-django31:
stage: test
image: python:3-alpine
before_script:
- pip install tox --no-cache-dir
script: tox -e py38-django31
linters:
stage: quality-assurance
image: python:3-alpine
before_script:
- pip install tox --no-cache-dir
script: tox -e linters
# Be nice to new contributors, but please use `tox`
allow_failure: true