Skip to content

Commit

Permalink
Try using setup-r-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bpbond committed Aug 19, 2023
1 parent ed30bcf commit 5e2e982
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/check-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,19 @@ jobs:
- uses: r-lib/actions/setup-r@v2
- uses: r-lib/actions/setup-pandoc@v2
- uses: quarto-dev/quarto-actions/setup@v2
- uses: r-lib/actions/setup-r-dependencies@v2
with:
packages:
any::quarto
any::dplyr
any::tidyr
any::remotes
any::readr
any::lubridate
- name: Install needed packages
run: |
install.packages("quarto", repos = "https://cran.rstudio.com/")
install.packages(c("dplyr", "tidyr", "remotes", "readr", "lubridate"))
#install.packages("quarto", repos = "https://cran.rstudio.com/")
#install.packages(c("dplyr", "tidyr", "remotes", "readr", "lubridate"))
remotes::install_github("COMPASS-DOE/compasstools")
shell: Rscript {0}
- name: Run workflow
Expand Down

0 comments on commit 5e2e982

Please sign in to comment.