Skip to content

Commit f813423

Browse files
add install remote in workflow
1 parent 2071b3f commit f813423

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/code-quality.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,12 @@ jobs:
8282
steps:
8383
- uses: actions/checkout@v2
8484
- uses: r-lib/actions/setup-r@v2
85+
- name: Install remotes
86+
run: Rscript -e "install.packages('remotes')"
8587
- name: Install dependencies
8688
run: Rscript -e 'remotes::install_deps(dependencies = TRUE)'
8789
- name: Check documentation and options consistency
8890
run: Rscript .ci/code-quality-checks.R
8991
- name: Run R CMD check
9092
run: Rscript -e 'devtools::check()'
91-
93+

0 commit comments

Comments
 (0)