Update django requirement from <5.1,>=4.2 to >=4.2,<5.2 #39
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test wagtailterms | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: ["3.9", "3.12"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set env | |
run: echo "RELEASE_VERSION=0.0.1" >> $GITHUB_ENV | |
- name: Install Dependencies | |
run: | | |
pip install Django | |
pip install wagtail | |
pip install -e . | |
- name: Run Tests | |
run: | | |
cd example | |
python manage.py test wagtailterms |