Skip to content

Commit 0dfd26e

Browse files
committed
Run tests on a weekly schedule
Also allow manual workflow dispatches. Pull requests and pushes still create each job twice for a push to an open pull request within the same repo, but fixing that is non-trivial and I frankly don't care enough.
1 parent 8b3832c commit 0dfd26e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: Tests
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
pull_request:
6+
schedule:
7+
- cron: "* 0 * * SAT"
8+
workflow_dispatch:
49

510
jobs:
611
no_defpkg:

0 commit comments

Comments
 (0)