Update documentation, DESCRIPTION, and workflow configuration #7
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
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')" | |