From b6cd8988a8ab384617e38f906f163fec6f1e41d2 Mon Sep 17 00:00:00 2001 From: Alan Wang <22178748+wanghalan@users.noreply.github.com> Date: Fri, 1 Mar 2024 01:09:51 -0500 Subject: [PATCH] patch: adding additional dependencies --- .github/workflows/prepare_renv.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/prepare_renv.yml b/.github/workflows/prepare_renv.yml index 2a346a4..12d15cd 100644 --- a/.github/workflows/prepare_renv.yml +++ b/.github/workflows/prepare_renv.yml @@ -26,6 +26,9 @@ jobs: env: GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} steps: + - name: Installing dependencies + run: | + sudo apt-get install libcurl4-openssl-dev # Downloading both the repositories to simulate the original task - uses: actions/checkout@main with: @@ -40,6 +43,7 @@ jobs: renv::init() renv::restore() install.packages('remotes') + install.packages('vroom') remotes::install_github('uva-bi-sdad/community') renv::snapshot() # # Caches by default last only 10 minutes