From 3e352973d89a32b692cb8f49eacbad4d0df4aeb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Han=C3=A1k?= <47626173+phanak-sap@users.noreply.github.com> Date: Tue, 9 Jan 2024 12:01:34 +0100 Subject: [PATCH] ci: setup compatibility runs also weekly Because CI for package compatibility are a intentionally a "moving target" for package updates, it is not enough to depend on running just after commit to master. When long time pass, build is often broken due compatibility changes irrelevant to actual code change. So this change is intended to at least spot problems before such situation and ease debugging of CI. --- .github/workflows/python-tests-compatibility.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/python-tests-compatibility.yml b/.github/workflows/python-tests-compatibility.yml index a9baafe8..1155a86a 100644 --- a/.github/workflows/python-tests-compatibility.yml +++ b/.github/workflows/python-tests-compatibility.yml @@ -8,6 +8,8 @@ on: branches: [ master ] pull_request: branches: [ master ] + schedule: + - cron: '0 0 * * SUN' jobs: build: