From 8137c7c5fee97bbc4f0e872e08ba40c458b30842 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Wed, 21 Dec 2022 14:16:54 +0100 Subject: [PATCH] Remove unused --- .../custom/before-install/action.yml | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/custom/before-install/action.yml diff --git a/.github/workflows/custom/before-install/action.yml b/.github/workflows/custom/before-install/action.yml deleted file mode 100644 index 6fdacb768..000000000 --- a/.github/workflows/custom/before-install/action.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: 'Custom steps to run before R packages are installed' - -runs: - using: "composite" - steps: - - - name: Define R CMD check error condition - run: | - if (getRversion() < "3.5" || (.Platform$OS.type == "windows" && getRversion() < "4.0")) { - message("Setting RCMDCHECK_ERROR_ON") - cat('RCMDCHECK_ERROR_ON="warning"\n', file = Sys.getenv("GITHUB_ENV"), append = TRUE) - } - shell: Rscript {0} - - - name: Define _R_CHECK_FORCE_SUGGESTS_ - run: | - if (getRversion() < "3.5") { - message("Setting _R_CHECK_FORCE_SUGGESTS_") - cat('_R_CHECK_FORCE_SUGGESTS_=false\n', file = Sys.getenv("GITHUB_ENV"), append = TRUE) - } - shell: Rscript {0}