Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancement: Run tests nightly at 12.15am #5738

Merged
merged 1 commit into from Mar 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 16 additions & 2 deletions .github/workflows/ci.yaml
@@ -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 @@ -190,6 +196,8 @@ jobs:
code-coverage:
name: Code Coverage

if: github.event_name != 'schedule'

needs:
- end-to-end-tests

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

if: github.event_name != 'schedule'

needs:
- end-to-end-tests

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

if: github.event_name != 'schedule'

needs:
- build-phar

Expand Down Expand Up @@ -322,6 +334,8 @@ jobs:
test-phar-without-code-coverage:
name: Test PHAR without code coverage

if: github.event_name != 'schedule'

needs:
- build-phar

Expand Down