Skip to content

Commit

Permalink
Install dplyr in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom committed Sep 18, 2024
1 parent e952ad5 commit 8127c43
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332

- uses: r-lib/actions/setup-r@v2
with:
r-version: 4.3.1
Expand All @@ -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
Expand Down

0 comments on commit 8127c43

Please sign in to comment.