Skip to content

Nightly Wagtail Test #134

Nightly Wagtail Test

Nightly Wagtail Test #134

Workflow file for this run

name: Nightly Wagtail Test
on:
schedule:
- cron: '0 1 * * *'
# At 01:00, daily
workflow_dispatch:
jobs:
nightly-wagtail-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: git clone https://github.com/wagtail/wagtail.git
- run: python -m pip install flit
- run: flit install --deps develop --extras test
- run: python -m pip install ./wagtail
- run: python testmanage.py test
- name: Report failure
run: |
python -m pip install requests
python ./.github/scripts/report_nightly_build_failure.py
if: ${{ failure() }}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL || '' }}