File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -10,15 +10,33 @@ name: R-CMD-check
10
10
11
11
jobs :
12
12
R-CMD-check :
13
- runs-on : ubuntu-latest
13
+ runs-on : ${{ matrix.config.os }}
14
+
15
+ name : ${{ matrix.config.os }} (${{ matrix.config.r }})
16
+
17
+ strategy :
18
+ fail-fast : false
19
+ matrix :
20
+ config :
21
+ - {os: macos-latest, r: 'release'}
22
+ - {os: windows-latest, r: 'release'}
23
+ - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
24
+ - {os: ubuntu-latest, r: 'release'}
25
+ - {os: ubuntu-latest, r: 'oldrel-1'}
26
+
14
27
env :
15
28
GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
16
29
R_KEEP_PKG_SOURCE : yes
30
+
17
31
steps :
18
32
- uses : actions/checkout@v3
19
33
34
+ - uses : r-lib/actions/setup-pandoc@v2
35
+
20
36
- uses : r-lib/actions/setup-r@v2
21
37
with :
38
+ r-version : ${{ matrix.config.r }}
39
+ http-user-agent : ${{ matrix.config.http-user-agent }}
22
40
use-public-rspm : true
23
41
24
42
- uses : r-lib/actions/setup-r-dependencies@v2
27
45
needs : check
28
46
29
47
- uses : r-lib/actions/check-r-package@v2
48
+ with :
49
+ upload-snapshots : true
You can’t perform that action at this time.
0 commit comments