From e615e1648d3ed464ab273b3653822efced7e062a Mon Sep 17 00:00:00 2001 From: Delaigue Olivier <olivier.delaigue@irstea.fr> Date: Sun, 18 Apr 2021 07:05:28 +0000 Subject: [PATCH] ci(style): review minor style modifications in the .gitlab-ci.yml file --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5019ac13..c68113ae 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,7 +8,7 @@ default: - echo "setwd(\"$(pwd)\")" > .Rprofile - echo ".libPaths <- c(Sys.getenv(\"R_LIBS_USER\"), .libPaths())" >> .Rprofile - PATH=~/R/sources/R-${R_VERSION}/bin:$PATH - - R -e 'remotes::install_deps(dep = T)' + - R -e 'remotes::install_deps(dep = TRUE)' .regression: stage: regression @@ -21,7 +21,7 @@ default: .check: stage: check script: - - R -e ' rcmdcheck::rcmdcheck(args = ifelse(as.logical(Sys.getenv("NOT_CRAN")), "", "--as-cran"), error_on = "warning")' + - R -e 'rcmdcheck::rcmdcheck(args = ifelse(as.logical(Sys.getenv("NOT_CRAN")), "", "--as-cran"), error_on = "warning")' .check_not_cran: variables: -- GitLab