File tree Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Original file line number Diff line number Diff line change 26
26
27
27
steps :
28
28
- uses : actions/checkout@v2
29
-
30
- - name : Install Pandoc
31
- run : |
32
- sudo apt-get update -q
33
- sudo apt-get install -y pandoc
34
- shell : bash
35
29
36
30
- name : Set up R ${{ matrix.r-version }}
37
31
uses : r-lib/actions/setup-r@v2-branch
40
34
41
35
- name : Install dependencies
42
36
run : |
43
- install.packages(c("remotes", "rcmdcheck"))
44
- remotes::install_deps(dependencies = TRUE)
45
- shell : Rscript {0}
37
+ R -e "install.packages(c('remotes', 'rcmdcheck'), repos = 'https://cloud.r-project.org')"
38
+ R -e "remotes::install_deps(dependencies = TRUE)"
39
+ shell : bash
40
+
46
41
- name : Check
47
- run : rcmdcheck::rcmdcheck(args = " --no-manual" , error_on = " error")
48
- shell : Rscript {0}
42
+ R -e " rcmdcheck::rcmdcheck(args = ' --no-manual' , error_on = ' error')"
43
+ shell : bash
You can’t perform that action at this time.
0 commit comments