From 4f73c3733837c54294e123642d27c2cc457960b6 Mon Sep 17 00:00:00 2001 From: colinleach Date: Tue, 15 Oct 2024 11:41:29 -0700 Subject: [PATCH 1/2] Add tidyverse to CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eac9428..d4549cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: - name: Install project dependencies run: | - install.packages(c("testthat", "jsonlite", "lintr", "dplyr")) + install.packages(c("testthat", "jsonlite", "lintr", "tidyverse", "dplyr")) shell: Rscript {0} - name: Run exercism/r ci (runs tests) for all exercises From d7b5f9e876750a9c53d2a8173c0bfa4203a63908 Mon Sep 17 00:00:00 2001 From: colinleach Date: Tue, 15 Oct 2024 12:01:35 -0700 Subject: [PATCH 2/2] selective addition of tidyverse packages --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d4549cc..d643d9f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: - name: Install project dependencies run: | - install.packages(c("testthat", "jsonlite", "lintr", "tidyverse", "dplyr")) + install.packages(c("testthat", "jsonlite", "lintr", "dplyr", "stringr", "readr", "purrr", "tibble")) shell: Rscript {0} - name: Run exercism/r ci (runs tests) for all exercises