Skip to content

Commit

Permalink
Remove the extraneous "remotes" install in the github workflows
Browse files Browse the repository at this point in the history
We still have #406 to get the covidHubUtils workflows in better alignment
with those in the hubverse, but for now we're focused on cleaning up workflow installs
per # 404 by either moving them to DESCRIPTION (if they're used) or
deleting them (if they're not).
  • Loading branch information
bsweger committed Jan 16, 2024
1 parent 8813b00 commit ba20046
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:

- name: Install dependencies
run: |
install.packages(c("remotes","devtools","pkgdown"))
install.packages(c("devtools","pkgdown"))
devtools::install_github("epiforecasts/scoringutils")
remotes::install_deps(dependencies = NA)
devtools::install_deps(dependencies = NA)
shell: Rscript {0}

- name: Install zoltr
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr_unittest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
key: r-${{ hashFiles('DESCRIPTION') }}
- name: Install dependencies
run: |
install.packages(c("remotes","devtools"))
install.packages(c("devtools"))
devtools::install_github("epiforecasts/scoringutils")
remotes::install_deps(dependencies = NA)
devtools::install_deps(dependencies = NA)
shell: Rscript {0}
- name: Install zoltr
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/r_cmd_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
key: r-${{ hashFiles('DESCRIPTION') }}
- name: Install dependencies
run: |
install.packages(c("remotes","devtools"))
install.packages(c("devtools"))
devtools::install_github("epiforecasts/scoringutils")
remotes::install_deps(dependencies = NA)
devtools::install_deps(dependencies = NA)
shell: Rscript {0}
- name: Install zoltr
run: |
Expand Down

0 comments on commit ba20046

Please sign in to comment.