From 460fe978f19f72bd7b8b4de08710db7e5e390a93 Mon Sep 17 00:00:00 2001 From: Serkan Korkmaz <77464572+serkor1@users.noreply.github.com> Date: Mon, 13 Jan 2025 05:39:36 +0100 Subject: [PATCH] :hammer: Schedule R CMD check (#43) * APIs can be volatile: breaking changes, discontinued endpoints etc. The R CMD check is scheduled to run every mondays to continously mmonitor the state of the APIs. NOTE: This only checks API providers defined in test-CICD! --- .github/workflows/R-CMD-check.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml index 80a15b07..70aab93e 100644 --- a/.github/workflows/R-CMD-check.yaml +++ b/.github/workflows/R-CMD-check.yaml @@ -5,6 +5,9 @@ on: branches: [main, master, development, documentation] pull_request: branches: [main, master, development, documentation] + workflow_dispatch: + schedule: + - cron: '0 10 * * 1' name: R-CMD-check