Skip to content

Bump django from 5.1.1 to 5.1.4 #156

Bump django from 5.1.1 to 5.1.4

Bump django from 5.1.1 to 5.1.4 #156

Workflow file for this run

name: Tests
on:
push:
branches: [ "main" ]
pull_request:
jobs:
django-checks:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version:
- '3.12'
- '3.13'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
run: |
python manage.py test
- name: Run Django Check
run: |
python manage.py check
- name: Check migrations
run: |
python manage.py makemigrations --check