Skip to content

Support/wagtail 63

Support/wagtail 63 #73

Workflow file for this run

name: Python testing
on:
push:
pull_request:
branches: [master]
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
wagtail: ["wagtail==6.3"]
django: ["django==4.2", "django==5.0", "django==5.1"]
exclude:
- python: "3.9"
django: "django==5.0"
- python: "3.9"
django: "django==5.1"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
cache: "pip"
cache-dependency-path: "**/setup.cfg"
- run: |
pip install "${{ matrix.wagtail }}"
- run: |
python runtests.py