Skip to content

Upgrade to Django 5.0 (and other upgrades too) #529

Upgrade to Django 5.0 (and other upgrades too)

Upgrade to Django 5.0 (and other upgrades too) #529

Workflow file for this run

name: Python application
on:
push:
branches: [ main ]
pull_request:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: pre-commit/action@v3.0.0
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
# Maps tcp port 5432 on service container to the host
- 5432:5432
steps:
- uses: actions/checkout@v3
- name: Apt update
run: sudo apt update
- name: Install apt packages
run: sudo apt install -y graphicsmagick mupdf-tools ghostscript unoconv python3-dev
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install python packages
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Django checks
run: ./manage.py check
- name: Check migrations
run: ./manage.py makemigrations --dry-run --check
- name: mypy
run: mypy
- name: Statics checks
run: ./manage.py collectstatic --noinput -v 0
- name: pytest with SQLite
run: pytest -k "not unoconv"
- name: pytest with PostgreSQL
run: pytest -k "not unoconv" -m postgresql
env:
DB_URL: postgres://postgres:postgres@localhost:5432/postgres
- name: Check local dev initialization scripts
run: make database