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") +}