Skip to content

Commit

Permalink
replace devtools by remotes for dev deps (#185)
Browse files Browse the repository at this point in the history
Co-authored-by: pharmaverse-bot <[email protected]>
  • Loading branch information
dgrassellyb and pharmaverse-bot authored Feb 5, 2024
1 parent aab9fc2 commit ad4c51f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-templates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:

- name: Install dependencies from DESCRIPTION
run: |
devtools::install(force = TRUE, dependencies = TRUE)
remotes::install_local(force = TRUE, dependencies = TRUE)
shell: Rscript {0}

##################### END boilerplate steps #####################
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:

- name: Install dependencies from DESCRIPTION
run: |
devtools::install(force = TRUE, dependencies = TRUE)
remotes::install_local(force = TRUE, dependencies = TRUE)
shell: Rscript {0}

##################### END boilerplate steps #####################
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/r-cmd-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
(github.event_name == 'workflow_dispatch' && matrix.r_version == 'devel') ||
matrix.r_version != 'devel'
run: |
devtools::install(force = TRUE, dependencies = TRUE)
remotes::install_local(force = TRUE, dependencies = TRUE)
shell: Rscript {0}

##################### END boilerplate steps #####################
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/r-pkg-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:

- name: Install dependencies from DESCRIPTION
run: |
devtools::install(force = TRUE, dependencies = TRUE)
remotes::install_local(force = TRUE, dependencies = TRUE)
shell: Rscript {0}

##################### END boilerplate steps #####################
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/readme-render.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:

- name: Install dependencies from DESCRIPTION
run: |
devtools::install(force = TRUE, dependencies = TRUE)
remotes::install_local(force = TRUE, dependencies = TRUE)
shell: Rscript {0}

##################### END boilerplate steps #####################
Expand Down

0 comments on commit ad4c51f

Please sign in to comment.