We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2996e65 commit c0833c2Copy full SHA for c0833c2
.github/workflows/check-standard.yaml
@@ -65,11 +65,23 @@ jobs:
65
eval sudo $cmd
66
done < <(Rscript -e 'writeLines(remotes::system_requirements("ubuntu", "20.04"))')
67
68
- - name: Install dependencies
+ - name: Install source dependencies
69
+ if: runner.os == 'Linux'
70
run: |
71
remotes::install_deps(dependencies = TRUE)
72
shell: Rscript {0}
73
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
82
+ remotes::install_cran("rcmdcheck")
83
84
85
- name: Check
86
env:
87
_R_CHECK_CRAN_INCOMING_REMOTE_: false
0 commit comments