Skip to content

[Composant Quote] Pouvoir choisir la taille du texte cité (#302) #9

[Composant Quote] Pouvoir choisir la taille du texte cité (#302)

[Composant Quote] Pouvoir choisir la taille du texte cité (#302) #9

Workflow file for this run

name: Django-DSFR CI for python 3.10-3.11
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: 🐍 Set up Python ${{ matrix.python-version }} with uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: 👷 Install Dependencies
run: |
uv sync --all-extras --no-group dev
- name: 🚧 Check pending migrations
run: |
uv run python manage.py makemigrations --check --dry-run --noinput
- name: 🧪 Run Tests - Django 4
run: |
uv run python manage.py test
- name: 🧪 Run Tests - Django 5
run: |
uv add "django>=5.0,<6.0"
uv run python manage.py test