Skip to content

Commit c0833c2

Browse files
authored
Update check-standard.yaml
1 parent 2996e65 commit c0833c2

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/check-standard.yaml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,23 @@ jobs:
6565
eval sudo $cmd
6666
done < <(Rscript -e 'writeLines(remotes::system_requirements("ubuntu", "20.04"))')
6767
68-
- name: Install dependencies
68+
- name: Install source dependencies
69+
if: runner.os == 'Linux'
6970
run: |
7071
remotes::install_deps(dependencies = TRUE)
7172
shell: Rscript {0}
7273

74+
- name: Install binary dependencies
75+
if: runner.os != 'Linux'
76+
run: |
77+
remotes::install_deps(dependencies = TRUE, type="binary")
78+
shell: Rscript {0}
79+
80+
- name: Install rcmdcheck
81+
run: |
82+
remotes::install_cran("rcmdcheck")
83+
shell: Rscript {0}
84+
7385
- name: Check
7486
env:
7587
_R_CHECK_CRAN_INCOMING_REMOTE_: false

0 commit comments

Comments
 (0)