Skip to content

R-CMD-check

R-CMD-check #44

Workflow file for this run

on:
push:
paths-ignore:
- README.md
- LICENSE.md
- 'man/**'
branches: [main, develop]
pull_request:
branches: [main, develop]
workflow_dispatch:
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: macos-latest, r: 'release', syle-here: 'no'}
- {os: windows-latest, r: 'release', syle-here: 'no'}
- {os: ubuntu-latest, r: 'devel', syle-here: 'no', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1', syle-here: 'no'}
- {os: ubuntu-latest, r: 'release', syle-here: 'yes'}
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
- name: Trigger next workflow
if: ${{ matrix.config.syle-here == 'yes' && success() }}
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
repository: ${{ github.repository }}
event-type: trigger-workflow-style
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'