File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change 1
1
# https://docs.github.com/en/actions
2
2
3
3
on :
4
- - pull_request
5
- - push
4
+ pull_request : null
5
+ push : null
6
+ schedule :
7
+ - cron : " 15 0 * * *"
6
8
7
9
name : CI
8
10
39
41
coding-guidelines :
40
42
name : Coding Guidelines
41
43
44
+ if : github.event_name != 'schedule'
45
+
42
46
runs-on : ubuntu-latest
43
47
44
48
steps :
59
63
type-checker :
60
64
name : Type Checker
61
65
66
+ if : github.event_name != 'schedule'
67
+
62
68
needs :
63
69
- dependency-validation
64
70
@@ -190,6 +196,8 @@ jobs:
190
196
code-coverage :
191
197
name : Code Coverage
192
198
199
+ if : github.event_name != 'schedule'
200
+
193
201
needs :
194
202
- end-to-end-tests
195
203
@@ -222,6 +230,8 @@ jobs:
222
230
build-phar :
223
231
name : Build PHAR
224
232
233
+ if : github.event_name != 'schedule'
234
+
225
235
needs :
226
236
- end-to-end-tests
227
237
@@ -267,6 +277,8 @@ jobs:
267
277
test-phar :
268
278
name : Test PHAR
269
279
280
+ if : github.event_name != 'schedule'
281
+
270
282
needs :
271
283
- build-phar
272
284
@@ -322,6 +334,8 @@ jobs:
322
334
test-phar-without-code-coverage :
323
335
name : Test PHAR without code coverage
324
336
337
+ if : github.event_name != 'schedule'
338
+
325
339
needs :
326
340
- build-phar
327
341
You can’t perform that action at this time.
0 commit comments