chore(deps): bump cryptography from 46.0.7 to 48.0.1 (#320) #16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |