From 9bcba5c7755693c0a3065ecbdf37d7c24639eb6b Mon Sep 17 00:00:00 2001 From: Jiri Hnidek Date: Tue, 2 Jul 2024 21:03:46 +0200 Subject: [PATCH] feat: Run Github CI action py.test every month * Run unit tests every month to catch new regressions just in time --- .github/workflows/pytest.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 405ffc2b..f07e1544 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -3,6 +3,9 @@ name: pytest on: pull_request: workflow_dispatch: + schedule: + # at 6:00 every 1st of the month + - cron: 0 6 1 * * jobs: pytest: