Update NEWS.md #36
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
on: [push, pull_request] | |
name: R-CMD-check | |
jobs: | |
R-CMD-check: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: r-lib/actions/setup-r@master | |
- name: Install xquartz | |
if: runner.os == 'macOS' | |
run: brew install --cask xquartz | |
- name: Install dependencies | |
run: | | |
install.packages(c("remotes", "rcmdcheck")) | |
remotes::install_deps(dependencies = TRUE) | |
shell: Rscript {0} | |
- name: Check | |
run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "error") | |
shell: Rscript {0} | |
env: | |
# suppress warnings of rgl package | |
RGL_USE_NULL: true | |
# required on macOS >= 10.15.4 for correct linking | |
SDKROOT: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk |