File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ name: R-CMD-check
10
10
11
11
# Increment this version when we want to clear cache
12
12
env :
13
- cache-version : v1
13
+ cache-version : v2
14
14
15
15
jobs :
16
16
R-CMD-check :
77
77
sysreqs=$(Rscript -e "cat(sysreqs::sysreq_commands('DESCRIPTION'))")
78
78
sudo -s eval "$sysreqs"
79
79
80
+ # Remove this when the new rmarkdown is released on CRAN
81
+ - name : " Workaround for rstudio/rmarkdown#1831"
82
+ if : runner.os == 'Linux' && matrix.config.r < '3.6'
83
+ run : Rscript -e "remotes::install_github('rstudio/rmarkdown')"
84
+
80
85
- name : Install system dependencies on macOS
81
86
if : runner.os == 'macOS'
82
87
run : |
Original file line number Diff line number Diff line change 26
26
# switch off vdiffr by default
27
27
- VDIFFR_RUN_TESTS=false
28
28
29
+ # Workaround for rstudio/rmarkdown#1831
30
+ r_github_packages : rstudio/rmarkdown
31
+
29
32
after_success :
30
33
- Rscript -e 'covr::codecov()'
31
34
You can’t perform that action at this time.
0 commit comments