Skip to content

Bump wagtail from 6.2 to 6.2.1 #41

Bump wagtail from 6.2 to 6.2.1

Bump wagtail from 6.2 to 6.2.1 #41

Workflow file for this run

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