From 8127c430ba6b7a237a992aebc1ef3a0e2424098c Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Wed, 18 Sep 2024 08:49:17 +0200 Subject: [PATCH] Install dplyr in CI --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fb9c7762..c558751f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - + - uses: r-lib/actions/setup-r@v2 with: r-version: 4.3.1 @@ -40,18 +40,18 @@ jobs: strategy: matrix: - R: [ '4.3.1' ] + R: ["4.3.1"] steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - + - uses: r-lib/actions/setup-r@v2 with: r-version: ${{ matrix.R }} - name: Install project dependencies run: | - install.packages(c("testthat", "jsonlite", "lintr")) + install.packages(c("testthat", "jsonlite", "lintr", "dplyr")) shell: Rscript {0} - name: Run exercism/r ci (runs tests) for all exercises