Skip to content

Commit

Permalink
Merge branch '8.5' into 9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Mar 12, 2024
2 parents b2b7a8f + 285860a commit b27e39a
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# https://docs.github.com/en/actions

on:
- pull_request
- push
pull_request: null
push: null
schedule:
- cron: "15 0 * * *"

name: CI

Expand Down Expand Up @@ -39,6 +41,8 @@ jobs:
coding-guidelines:
name: Coding Guidelines

if: github.event_name != 'schedule'

runs-on: ubuntu-latest

steps:
Expand All @@ -59,6 +63,8 @@ jobs:
type-checker:
name: Type Checker

if: github.event_name != 'schedule'

needs:
- dependency-validation

Expand Down Expand Up @@ -188,6 +194,8 @@ jobs:
code-coverage:
name: Code Coverage

if: github.event_name != 'schedule'

needs:
- end-to-end-tests

Expand Down Expand Up @@ -220,6 +228,8 @@ jobs:
build-phar:
name: Build PHAR

if: github.event_name != 'schedule'

needs:
- end-to-end-tests

Expand Down Expand Up @@ -265,6 +275,8 @@ jobs:
test-phar:
name: Test PHAR

if: github.event_name != 'schedule'

needs:
- build-phar

Expand Down

0 comments on commit b27e39a

Please sign in to comment.