Skip to content

make it work on test workflow #74

make it work on test workflow

make it work on test workflow #74

Workflow file for this run

name: R
on:
push:
branches: [ "testing-actions" ]
pull_request:
branches: [ "main" ]
permissions:
contents: write
jobs:
build:
runs-on: [macos-latest, ubuntu-latest]
strategy:
matrix:
r-version: ['4.3.3']
steps:
- uses: actions/checkout@v3
- name: Set up R ${{ matrix.r-version }}
uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.r-version }}
- name: Install dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck, any::remotes, any::pandoc, any::gh
- name: lme4 from source
run: R -q -e 'install.packages(c("lme4"), type = "source")'
- name: Install pandoc
uses: r-lib/actions/setup-pandoc@v2
- name: Tests
uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
error-on: '"error"'
build_args: '"--no-build-vignettes"'
args: 'c("--no-manual", "--as-cran", "--no-vignettes")'