From df41aff98bd393cec6a90770930a3ec9405b48bb Mon Sep 17 00:00:00 2001 From: Felix Andreas Date: Tue, 24 Mar 2026 19:56:31 +0100 Subject: [PATCH] chore: Don't use renv in CI --- .Rprofile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.Rprofile b/.Rprofile index e5ad82f..8159781 100644 --- a/.Rprofile +++ b/.Rprofile @@ -1,2 +1,4 @@ -options(renv.config.pak.enabled = TRUE) -source("renv/activate.R") +if (!nzchar(Sys.getenv("GITHUB_ACTIONS"))) { + options(renv.config.pak.enabled = TRUE) + source("renv/activate.R") +}