swap out .data for NULLs #40
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag. | |
# https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions | |
on: | |
push: | |
branches-ignore: | |
# Ignore the pkgdown pages. | |
- 'gh-pages' | |
pull_request: | |
branches: | |
- main | |
- master | |
name: R-CMD-check | |
jobs: | |
R-CMD-check: | |
runs-on: ${{ matrix.os }} | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
strategy: | |
fail-fast: false | |
matrix: | |
# config: | |
# - {os: ubuntu-latest, r: 'release'} | |
# - {os: macOS-latest, r: 'release', http-user-agent: 'release', ONLY_READ_TESTS: true} | |
# - {os: windows-latest, r: 'release'} | |
os: [ubuntu-latest] | |
include: | |
- os: ubuntu-latest | |
# os: [windows-latest] | |
# include: | |
# - os: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: r-lib/actions/setup-pandoc@v1 | |
- uses: r-lib/actions/setup-r@v1 | |
with: | |
# r-version: ${{ matrix.config.r }} | |
# http-user-agent: ${{ matrix.config.http-user-agent }} | |
# ONLY_READ_TESTS: ${{ matrix.config.ONLY_READ_TESTS }} | |
use-public-rspm: true | |
- uses: r-lib/actions/setup-r-dependencies@v1 | |
with: | |
extra-packages: rcmdcheck | |
- uses: r-lib/actions/check-r-package@v1 | |
# with: | |
# ONLY_READ_TESTS: ${{ matrix.config.ONLY_READ_TESTS }} | |
- name: Show testthat output | |
if: always() | |
run: find check -name 'testthat.Rout*' -exec cat '{}' \; || true | |
shell: bash | |
- name: Test coverage | |
run: covr::codecov() | |
shell: Rscript {0} |