Skip to content

Inherit from providers in stead of dynamic loading #73

Inherit from providers in stead of dynamic loading

Inherit from providers in stead of dynamic loading #73

Workflow file for this run

on: [pull_request]
name: R-check
jobs:
R-check:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
strategy:
fail-fast: false
matrix:
config:
- { os: windows-latest, r: 'latest'}
- { os: ubuntu-22.04, r: 'latest'}
- { os: ubuntu-22.04, r: 'devel'}
- { os: macOS-latest, r: 'latest'}
env:
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
steps:
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
- name: Test coverage
if: matrix.config.os == 'macOS-latest' && matrix.config.r == 'latest'
run: |
Rscript -e 'install.packages("covr")' -e 'covr::codecov(token = "${{secrets.CODECOV_TOKEN}}")'