Skip to content

Add Django 4 compatibility #12

Add Django 4 compatibility

Add Django 4 compatibility #12

Workflow file for this run

name: Django CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.8, 3.9, 3.10, 3.11]
django_version: [~=3.2.0, ~=4.2.0]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install 'Django${{ matrix.django_version }}'
pip install .
- name: Install Test Dependencies
run: |
pip install -r test_requirements.txt
- name: Run Tests
run: |
python runtests.py runtests