Commit f78e816 committed Oct 2, 2024 · 7 / 8
1 parent 045ca3f commit f78e816 Copy full SHA for f78e816
File tree 1 file changed +49
-0
lines changed
1 file changed +49
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2
+ # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3
+ on :
4
+ push :
5
+ pull_request :
6
+
7
+ name : R-CMD-check.yaml
8
+
9
+ permissions : read-all
10
+
11
+ jobs :
12
+ R-CMD-check :
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-13, r: 'release'}
22
+ - {os: macos-14, r: 'release'}
23
+ - {os: windows-4.1 , r: 'release'}
24
+ - {os: windows-latest , r: 'release'}
25
+ - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
26
+ - {os: ubuntu-latest, r: 'release'}
27
+ - {os: ubuntu-latest, r: 'oldrel-1'}
28
+
29
+ env :
30
+ GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
31
+ R_KEEP_PKG_SOURCE : yes
32
+
33
+ steps :
34
+ - uses : actions/checkout@v4
35
+
36
+ - uses : r-lib/actions/setup-pandoc@v2
37
+
38
+ - uses : r-lib/actions/setup-r@v2
39
+ with :
40
+ r-version : ${{ matrix.config.r }}
41
+ http-user-agent : ${{ matrix.config.http-user-agent }}
42
+ use-public-rspm : true
43
+
44
+ - uses : r-lib/actions/setup-r-dependencies@v2
45
+ with :
46
+ extra-packages : any::rcmdcheck
47
+ needs : check
48
+
49
+ - uses : r-lib/actions/check-r-package@v2
You can’t perform that action at this time.
0 commit comments