Skip to content

Test

Test #292

Workflow file for this run

# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
pull_request:
name: R-CMD-check
jobs:
R-CMD-check:
runs-on: ubuntu-latest
name: ${{ matrix.container }}
container: ghcr.io/r-hub/containers/${{ matrix.container }}:latest
strategy:
fail-fast: false
matrix:
container: [ 'clang16', 'clang18', 'clang20', 'gcc14', 'ubuntu-clang' ]
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
DOWNLOAD_STATIC_LIBV8: true
steps:
- uses: actions/checkout@v4
- 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