Skip to content

Commit

Permalink
Mise à jour des dépendances Python et de la CI (#189)
Browse files Browse the repository at this point in the history
* Update Python dependencies and version number

* CI: Add a check for pending migrations

* Update CI to check for version 3.13

* Update CI
  • Loading branch information
Ash-Crow authored Dec 12, 2024
1 parent 1edd1b8 commit 830c563
Show file tree
Hide file tree
Showing 3 changed files with 219 additions and 174 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci-3-10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v2
Expand All @@ -25,6 +25,9 @@ jobs:
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: 🚧 Check pending migrations
run: |
poetry run python manage.py makemigrations --check --dry-run --noinput
- name: 🧪 Run Tests - Django 3
run: |
poetry run python manage.py test
Expand Down
Loading

0 comments on commit 830c563

Please sign in to comment.