Skip to content

Commit 1686614

Browse files
authored
Merge pull request #50 from hsluv/make-github-actions-run-every-week
Make GitHub Actions run every week (so that we notice broken CI early in the future)
2 parents 611ac8a + c56cbb8 commit 1686614

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/test.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@
44
name: Run the Test Suite
55

66
on:
7-
- pull_request
8-
- push
7+
pull_request:
8+
push:
9+
schedule:
10+
- cron: '0 16 * * 5' # Every Friday 4pm
11+
workflow_dispatch:
912

1013
jobs:
1114
run_test_suite:

0 commit comments

Comments
 (0)