Skip to content

Commit 578a2a9

Browse files
committed
build: run the tests once a week even if our code hasn't changed.
We use internal things that Django might change at any time, so we should run our tests even if our code hasn't changed.
1 parent 3f7d993 commit 578a2a9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ on:
77
push:
88
pull_request:
99
workflow_dispatch:
10+
schedule:
11+
# Since we test against the tip of Django development, run the tests once a
12+
# week, Sundays at 6:00 UTC.
13+
- cron: "0 6 * * 0"
14+
1015

1116
defaults:
1217
run:

0 commit comments

Comments
 (0)