@@ -21,16 +21,15 @@ jobs:
2121 config :
2222 - {os: windows-latest, r: '3.6'}
2323 - {os: macOS-latest, r: '3.6'}
24- - {os: ubuntu-16.04, r: '3.6'}
25- - {os: ubuntu-18.04, r: '3.6'}
2624 - {os: windows-latest, r: '4.0'}
2725 - {os: macOS-latest, r: '4.0'}
28- - {os: ubuntu-16.04, r: '4.0'}
29- - {os: ubuntu-18.04, r: '4.0'}
26+ - {os: ubuntu-16.04, r: '4.0', rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
27+ - {os: ubuntu-18.04, r: '4.0', rspm: "https://packagemanager.rstudio.com/cran/__linux__/bionic/latest"}
28+ - {os: ubuntu-18.04, r: 'devel', rspm: "https://packagemanager.rstudio.com/cran/__linux__/bionic/latest"}
3029
3130 env :
3231 R_REMOTES_NO_ERRORS_FROM_WARNINGS : true
33- CRAN : ${{ matrix.config.cran }}
32+ RSPM : ${{ matrix.config.rspm }}
3433
3534 steps :
3635 - uses : actions/checkout@v1
7776 run : rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "warning", check_dir = "check")
7877 shell : Rscript {0}
7978
79+ - name : Show install output
80+ if : always()
81+ run : find check -name '00install.out*' -exec cat '{}' \; || true
82+ shell : bash
83+
84+ - name : Show testthat output
85+ if : always()
86+ run : find check -name 'testthat.Rout*' -exec cat '{}' \; || true
87+ shell : bash
88+
8089 - name : Upload check results
8190 if : failure()
8291 uses : actions/upload-artifact@master
0 commit comments