-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (28 loc) · 904 Bytes
/
nightly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Nightly Django Test
on:
schedule:
- cron: '0 1 * * *'
# At 01:00, daily
workflow_dispatch:
jobs:
nightly-django-test:
runs-on: ubuntu-latest
env:
WEBHOOK_EXISTS: ${{ secrets.SLACK_WEBHOOK_URL != '' }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: git clone https://github.com/django/django.git
- run: python -m pip install flit
- run: flit install --deps production --extras testing
- run: python -m pip install ./django
- 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.WEBHOOK_EXISTS == 'true' }}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}