Skip to content

Merge pull request #132 from Public-Health-Scotland/deps/r-cmd-check #172

Merge pull request #132 from Public-Health-Scotland/deps/r-cmd-check

Merge pull request #132 from Public-Health-Scotland/deps/r-cmd-check #172

Workflow file for this run

# Workflow derived from https://github.com/r-lib/actions/tree/master/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches:
- 'main'
- 'master'
- 'dev**'
pull_request:
branches:
- 'main'
- 'master'
- 'dev**'
name: R-CMD-check
jobs:
R-CMD-check:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
continue-on-error: ${{ matrix.config.must_pass }}
strategy:
fail-fast: false
matrix:
config:
# Latest R versions
- {os: windows-latest, r: 'release', must_pass: true}
- {os: ubuntu-latest, r: 'release', must_pass: true}
# Development and recent releases
- {os: windows-latest, r: 'devel', http-user-agent: 'release', must_pass: true}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release', must_pass: true}
- {os: ubuntu-latest, r: 'oldrel-1', must_pass: false}
- {os: ubuntu-latest, r: 'oldrel-2', must_pass: false}
# An approximation for the PHS RStudio Desktop installation
- {os: windows-latest, r: '4.0.1', must_pass: true}
# An approximation of the PHS RStudio setup on Posit Workbench
- {os: ubuntu-latest, r: '4.0.2', must_pass: true}
- {os: ubuntu-latest, r: '4.1.2', must_pass: true}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true
- 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