[CI] run tests against python 3.13.2 and 3.12.9

This commit is contained in:
bronsen 2025-03-15 00:00:53 +01:00
parent ef3523082a
commit 08cf19a69d

View file

@ -2,6 +2,11 @@ when:
- event: push - event: push
branch: main branch: main
matrix:
PYTHON_VERSION:
- 3.13.2
- 3.12.9
steps: steps:
- name: lint - name: lint
image: pipelinecomponents/ruff image: pipelinecomponents/ruff
@ -9,7 +14,7 @@ steps:
- ruff check . - ruff check .
- name: test - name: test
image: python:3.13-slim image: python:${PYTHON_VERSION}-slim
environment: environment:
DJANGO_SETTINGS_MODULE: config.settings DJANGO_SETTINGS_MODULE: config.settings
DEPLOYMENT: Test DEPLOYMENT: Test