Skip to content

Bump python to 3.9 #178

Bump python to 3.9

Bump python to 3.9 #178

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
tenants-app:
- django-tenants
celery: ['celery', 'celery<5.5', 'celery<5.4']
django: ['django<5', 'django<6', 'django']
broker-url:
- redis://redis:6379/0
- amqp://guest:guest@rabbitmq:5672/
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Run tests
env:
PYTHON_VERSION: ${{ matrix.python-version }}
ADDITIONAL_REQUIREMENTS: ${{ matrix.tenants-app }} ${{ matrix.django }} redis ${{ matrix.celery }}
BROKER_URL: ${{ matrix.broker-url }}
run: ./run-tests