From 251ce7f7054822c005643caaa802f209509636e6 Mon Sep 17 00:00:00 2001
From: David Dorchies <david.dorchies@inrae.fr>
Date: Tue, 5 Sep 2023 09:14:02 +0200
Subject: [PATCH] ci(fix): missing dependency remotes

Refs #8
---
 .gitlab-ci.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a253812..87c6761 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -18,6 +18,7 @@ cache:
 before_script:
   - mkdir -p $R_LIBS_USER
   - echo "R_LIBS='$R_LIBS_USER'" > .Renviron
+  - R -q -e 'if (!require(remotes)) install.packages(c("remotes", "testthat"))'
   - R -q -e 'remotes::install_deps(dep = T)'
 
 test_all:
-- 
GitLab