Skip to content
This repository was archived by the owner on Feb 28, 2023. It is now read-only.

Commit cbbb332

Browse files
committed
ci: Perform nightly CI/CD runs to catch possible breakage
This helps catching issues unrelated to PRs (which are the most frequent reason to perform CI runs until now) only popping up when these are opened. Instead, perform sanity nightly runs to catch the breakage beforehand. A nice side-effect is that this also builds nightly binaries as part of the workflows.
1 parent c90d118 commit cbbb332

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
name: ci
2-
on: [push, pull_request]
2+
on:
3+
pull_request:
4+
push:
5+
# Run periodic nightly checks to catch unrelated possible breakages
6+
# in the meantime (e.g. some not pinned Docker image being updated or
7+
# a change in the CI environment)
8+
schedule:
9+
- cron: '0 0 * * *'
310
jobs:
411
lint:
512
name: ${{ matrix.component }} ${{ matrix.os }}

0 commit comments

Comments
 (0)