Skip to content

Add testing for Wagtail 6.3 #85

Add testing for Wagtail 6.3

Add testing for Wagtail 6.3 #85

Workflow file for this run

name: Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
name: 🧪 Test
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.12", "3.11", "3.10", "3.9"]
django: ["django>=4.2,<4.3", "django>=5.0,<5.1"]
wagtail: ["wagtail>=5.2,<5.3", "wagtail>=6.0,<6.1", "wagtail>=6.1,<6.2"]
exclude:
- python: "3.9"
django: "django>=5.0,<5.1"
- python: "3.12"
django: "django>=4.2,<4.3"
include:
- python: "3.12"
django: "django>=5.1,<5.2"
wagtail: "wagtail>=6.3,<6.4"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: "pip"
cache-dependency-path: "**/setup.cfg"
- run: |
pip install coverage
pip install "${{ matrix.wagtail }}"
- run: |
coverage run ./runtests.py
coverage report
coverage xml
- if: ${{ matrix.latest }}
uses: codecov/codecov-action@v4
with:
name: Python 3.12