Commit 26b989c 1 parent dadfedb commit 26b989c Copy full SHA for 26b989c
File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -25,13 +25,12 @@ jobs:
25
25
26
26
- uses : r-lib/actions/setup-r-dependencies@v2
27
27
with :
28
- extra-packages : any::covr, any::xml2
28
+ extra-packages : |
29
+ any::covr
30
+ any::xml2
31
+ any::remotes
29
32
needs : coverage
30
33
31
- - name : Install remotes
32
- if : steps.r-package-cache.outputs.cache-hit != 'true'
33
- run : install.packages("remotes")
34
-
35
34
- name : Install system dependencies
36
35
if : runner.os == 'Linux'
37
36
shell : bash
@@ -43,18 +42,19 @@ jobs:
43
42
sudo $cmd
44
43
done < <(Rscript -e "writeLines(remotes::system_requirements('$ID-$VERSION_ID'))")
45
44
46
-
47
45
- name : Install package + deps
48
46
run : remotes::install_local(dependencies = TRUE, force = TRUE)
47
+ shell : Rscript {0}
49
48
50
49
- name : Install greta deps
51
50
run : |
52
51
library(greta)
53
52
greta::install_greta_deps(timeout = 50)
53
+ shell : Rscript {0}
54
54
55
55
- name : Situation Report on greta install
56
56
run : greta::greta_sitrep()
57
-
57
+ shell : Rscript {0}
58
58
59
59
- name : Test coverage
60
60
run : |
You can’t perform that action at this time.
0 commit comments