1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-01-24 05:01:19 +00:00
plateforme-tfjm2/.gitlab-ci.yml
2025-01-14 20:21:57 +01:00

30 lines
590 B
YAML

stages:
- test
- quality-assurance
py312:
stage: test
image: python:3.12-alpine
before_script:
- apk add --no-cache libmagic
- apk add --no-cache gettext
- pip install tox --no-cache-dir
script: tox -e py312
py313:
stage: test
image: python:3.13-alpine
before_script:
- apk add --no-cache libmagic
- apk add --no-cache gettext
- pip install tox --no-cache-dir
script: tox -e py313
linters:
stage: quality-assurance
image: python:3-alpine
before_script:
- pip install tox --no-cache-dir
script: tox -e linters
allow_failure: true