Skip to content

Commit

Permalink
Automatically run CI weekly
Browse files Browse the repository at this point in the history
Signed-off-by: Michael X. Grey <[email protected]>
  • Loading branch information
mxgrey committed Aug 23, 2024
1 parent 198b9e4 commit 6d2f88e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci_linux.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: ci_linux

on:
schedule:
# * is a special character in YAML so you have to quote this string
# The final 1 indicates that we want to run this test on Tuesdays, making
# this a weekly test.
- cron: '30 2 * * 1'
pull_request:
workflow_dispatch:
push:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci_web.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: ci_web

on:
schedule:
# * is a special character in YAML so you have to quote this string
# The final 1 indicates that we want to run this test on Tuesdays, making
# this a weekly test.
- cron: '30 2 * * 1'
pull_request:
workflow_dispatch:
push:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci_windows.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: ci_windows
on:
schedule:
# * is a special character in YAML so you have to quote this string
# The final 1 indicates that we want to run this test on Tuesdays, making
# this a weekly test.
- cron: '30 2 * * 1'
pull_request:
workflow_dispatch:
push:
Expand Down

0 comments on commit 6d2f88e

Please sign in to comment.