diff options
| -rw-r--r-- | .github/workflows/build.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 38054a8..a196992 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,6 +23,13 @@ jobs: with: r-version: ${{ matrix.R }} + - name: Install R dependencies + run: | + install.packages('remotes') + remotes::install_deps(depedencies=T) + remotes::install_cran('testthat') + shell: Rscript {0} + - name: Build run: make test_R |
