Skip to content

Drop Python 3.10 and 3.11 support #940

Drop Python 3.10 and 3.11 support

Drop Python 3.10 and 3.11 support #940

Workflow file for this run

name: Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-24.04
strategy:
matrix:
db: [sqlite, postgres, mysql, mariadb]
python-version: ["3.12", "3.13", "3.14"]
include:
- db: postgres
db_user: runner
db_password: ""
- db: mysql
db_user: root
db_password: root
- db: mariadb
db_user: root
db_password: ""
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Start MySQL
if: matrix.db == 'mysql'
run: sudo systemctl start mysql.service
- name: Start PostgreSQL
if: matrix.db == 'postgres'
run: |
sudo systemctl start postgresql.service
sudo -u postgres createuser -s runner
- name: Start MariaDB
uses: ankane/setup-mariadb@v1
if: matrix.db == 'mariadb'
- name: Install Dependencies
run: |
sudo apt-get update -qq
sudo apt-get install -y libcurl4-openssl-dev libpython3-dev libssl-dev
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install apprise minio==7.2.20 mysqlclient
- name: Run Tests
env:
DB: ${{ matrix.db }}
DB_USER: ${{ matrix.db_user }}
DB_PASSWORD: ${{ matrix.db_password }}
SECRET_KEY: dummy-key
run: python manage.py test