Skip to content

Commit fd2a4c6

Browse files
committed
Add a weekly scheduled build to the CircleCI build
This should run at 03:00 every Sunday.
1 parent 818ca03 commit fd2a4c6

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.circleci/config.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151

5252
workflows:
5353
build-all:
54-
jobs:
54+
jobs: &all-jobs
5555
- build:
5656
matrix:
5757
parameters:
@@ -78,3 +78,12 @@ workflows:
7878
gemfile:
7979
- gemfiles/Gemfile.minitest.latest
8080
- gemfiles/Gemfile.test-unit.latest
81+
weekly:
82+
triggers:
83+
- schedule:
84+
cron: "0 3 * * 0"
85+
filters:
86+
branches:
87+
only:
88+
- main
89+
jobs: *all-jobs

0 commit comments

Comments
 (0)