Skip to content

Update documentation, DESCRIPTION, and workflow configuration #7

Update documentation, DESCRIPTION, and workflow configuration

Update documentation, DESCRIPTION, and workflow configuration #7

Workflow file for this run

name: R-CMD-check
on:
push:
pull_request:
branches: [main]
jobs:
R-CMD-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up R
uses: r-lib/actions/setup-r@v2
- name: Install system dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y libcurl4-openssl-dev libharfbuzz-dev libfribidi-dev
- name: Install dependencies
run: |
Rscript -e "install.packages('devtools')"
Rscript -e "devtools::install_deps(dependencies = TRUE)"
- name: Run R CMD check without manual pages
run: Rscript -e "devtools::check(args = '--no-manual')"