27 lines
617 B
YAML
27 lines
617 B
YAML
stages:
|
|
- test
|
|
- quality-assurance
|
|
|
|
|
|
# Debian Bookworm
|
|
py311-django32:
|
|
stage: test
|
|
image: debian:bookworm
|
|
before_script:
|
|
- >
|
|
apt-get update &&
|
|
apt-get install --no-install-recommends -y
|
|
python3-django python3-django-crispy-forms
|
|
python3-pil python3-django-allauth
|
|
python3-pip python3-setuptools tox git
|
|
script: tox -e py311-django32
|
|
|
|
linters:
|
|
stage: quality-assurance
|
|
image: debian:bookworm
|
|
before_script:
|
|
- apt-get update && apt-get install -y tox
|
|
script: tox -e linters
|
|
|
|
# Be nice to new contributors, but please use `tox`
|
|
allow_failure: true
|