Skip to content

Update NEWS.md

Update NEWS.md #36

Workflow file for this run

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