Skip to content

v0.6.6

v0.6.6 #19

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
#
# See https://github.com/r-lib/actions/tree/master/examples#readme for
# additional example workflows available for the R community.
name: R-CMD-check
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
R-CMD-check:
runs-on: macos-latest
strategy:
matrix:
r-version: ['4.0.5']
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
steps:
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-pandoc@v1
- name: Set up R ${{ matrix.r-version }}
uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.r-version }}
- uses: r-lib/actions/setup-r-dependencies@v1
with:
extra-packages: rcmdcheck
- uses: r-lib/actions/check-r-package@v1
- name: Show testthat output
if: always()
run: find check -name 'testthat.Rout*' -exec cat '{}' \; || true
shell: bash
- name: Upload check results
if: failure()
uses: actions/upload-artifact@main
with:
name: ${{ runner.os }}-r${{ matrix.config.r }}-results
path: check