We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 29b18cc + c0c930d commit bdc72ebCopy full SHA for bdc72eb
1 file changed
.circle/circle.yml.sample
@@ -112,7 +112,8 @@ jobs:
112
113
workflows:
114
version: 2
115
- build_test_deploy:
+ # Workflow which runs on each push
116
+ build_test_deploy_on_push:
117
jobs:
118
- build_and_test_python27
119
- build_and_test_python36
@@ -122,3 +123,18 @@ workflows:
122
123
filters:
124
branches:
125
only: master
126
+ build_test_weekly:
127
+ jobs:
128
+ - build_and_test_python27
129
+ - build_and_test_python36
130
+ # Workflow which runs nightly - note we don't perform deploy job on nightly
131
+ # build
132
+ triggers:
133
+ # Run nightly build for the pack
134
+ - schedule:
135
+ # NOTE: We run it at 1 am UTC on every Saturday
136
+ cron: "0 1 * * 6"
137
+ filters:
138
+ branches:
139
+ only:
140
+ - master
0 commit comments