Add Language field #106
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
name: R-CMD-check | |
jobs: | |
R-CMD-check: | |
runs-on: ${{ matrix.config.os }} | |
name: ${{ matrix.config.os }} (${{ matrix.config.r }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- { os: windows-latest, r: '4.0', args: "--no-manual"} | |
- { os: ubuntu-18.04, r: '4.0', cran: "https://demo.rstudiopm.com/all/__linux__/bionic/latest", args: "--no-manual" } | |
env: | |
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true | |
CRAN: ${{ matrix.config.cran }} | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: r-lib/actions/setup-r@master | |
with: | |
r-version: ${{ matrix.config.r }} | |
- uses: r-lib/actions/setup-pandoc@master | |
- uses: r-lib/actions/setup-tinytex@master | |
if: contains(matrix.config.args, 'no-manual') == false | |
- name: Ensure that tex has all the correct packages | |
if: contains(matrix.config.args, 'no-manual') == false | |
run: | | |
tlmgr install cm-super | |
- name: Install system dependencies | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt-get update -y | |
sudo apt-get -y install default-jdk libv8-dev libgdal-dev libgeos-dev libjq-dev libudunits2-dev | |
- name: Cache R packages | |
uses: actions/cache@v1 | |
with: | |
path: ${{ env.R_LIBS_USER }} | |
key: ${{ runner.os }}-r-${{ matrix.config.r }}-${{ hashFiles('DESCRIPTION') }} | |
- name: Install R dependencies | |
run: Rscript -e "install.packages(c('remotes', 'rcmdcheck', 'knitr'), type = 'source')" -e "remotes::install_deps(dependencies = TRUE);" | |
- name: Check | |
run: Rscript -e "rcmdcheck::rcmdcheck(args = '${{ matrix.config.args }}', error_on = 'warning', check_dir = 'check')" | |
- name: Upload check results | |
if: failure() | |
uses: actions/upload-artifact@master | |
with: | |
name: ${{ runner.os }}-r${{ matrix.config.r }}-results | |
path: check | |
- name: Test coverage | |
if: matrix.config.os == 'ubuntu-18.04' && matrix.config.r == '4.0' | |
run: | | |
Rscript -e 'remotes::install_github("r-lib/covr@gh-actions")' | |
Rscript -e 'covr::codecov(token = "${{secrets.CODECOV_TOKEN}}")' |