Nightly Wagtail Test #68
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: Nightly Wagtail Test | ||
on: | ||
schedule: | ||
- cron: '0 1 * * *' | ||
# At 01:00, daily | ||
workflow_dispatch: | ||
jobs: | ||
nightly-wagtail-test: | ||
runs-on: ubuntu-latest | ||
env: | ||
WEBHOOK_EXISTS: ${{ secrets.SLACK_WEBHOOK_URL != '' }} | ||
if: ${{ secrets.SLACK_WEBHOOK_URL != '' }} | ||
Check failure on line 14 in .github/workflows/nightly.yml GitHub Actions / Nightly Wagtail TestInvalid workflow file
|
||
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 production --extras testing | ||
- run: python -m pip install ./wagtail | ||
- run: python tests/manage.py test | ||
- name: Report failure | ||
run: | | ||
python -m pip install requests | ||
python ./.github/scripts/report_nightly_build_failure.py | ||
if: ${{ failure() && env.WEBHOOK_EXISTS == 'true' }} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |