Skip to content

Commit d186930

Browse files
Merge branch '9.6' into 10.5
2 parents 3df0911 + b27e39a commit d186930

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# https://docs.github.com/en/actions
22

33
on:
4-
- pull_request
5-
- push
4+
pull_request: null
5+
push: null
6+
schedule:
7+
- cron: "15 0 * * *"
68

79
name: CI
810

@@ -39,6 +41,8 @@ jobs:
3941
coding-guidelines:
4042
name: Coding Guidelines
4143

44+
if: github.event_name != 'schedule'
45+
4246
runs-on: ubuntu-latest
4347

4448
steps:
@@ -59,6 +63,8 @@ jobs:
5963
type-checker:
6064
name: Type Checker
6165

66+
if: github.event_name != 'schedule'
67+
6268
needs:
6369
- dependency-validation
6470

@@ -183,6 +189,8 @@ jobs:
183189
code-coverage:
184190
name: Code Coverage
185191

192+
if: github.event_name != 'schedule'
193+
186194
needs:
187195
- end-to-end-tests
188196

@@ -215,6 +223,8 @@ jobs:
215223
build-phar:
216224
name: Build PHAR
217225

226+
if: github.event_name != 'schedule'
227+
218228
needs:
219229
- end-to-end-tests
220230

@@ -260,6 +270,8 @@ jobs:
260270
test-phar:
261271
name: Test PHAR
262272

273+
if: github.event_name != 'schedule'
274+
263275
needs:
264276
- build-phar
265277

0 commit comments

Comments
 (0)