1
1
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples
2
2
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3
- #
4
- # NOTE: This workflow is overkill for most R packages and
5
- # check-standard.yaml is likely a better choice.
6
- # usethis::use_github_action("check-standard") will install it.
7
3
on :
8
4
push :
9
5
branches : [main, master]
@@ -23,18 +19,10 @@ jobs:
23
19
matrix :
24
20
config :
25
21
- {os: macOS-latest, r: 'release'}
26
-
27
22
- {os: windows-latest, r: 'release'}
28
- # Use 3.6 to trigger usage of RTools35
29
- - {os: windows-latest, r: '3.6'}
30
-
31
- # Use older ubuntu to maximise backward compatibility
32
- - {os: ubuntu-18.04, r: 'devel', http-user-agent: 'release'}
33
- - {os: ubuntu-18.04, r: 'release'}
34
- - {os: ubuntu-18.04, r: 'oldrel-1'}
35
- - {os: ubuntu-18.04, r: 'oldrel-2'}
36
- - {os: ubuntu-18.04, r: 'oldrel-3'}
37
- - {os: ubuntu-18.04, r: 'oldrel-4'}
23
+ - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
24
+ - {os: ubuntu-latest, r: 'release'}
25
+ - {os: ubuntu-latest, r: 'oldrel-1'}
38
26
39
27
env :
40
28
GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
0 commit comments