Skip to content

Update DESCRIPTION #147

Update DESCRIPTION

Update DESCRIPTION #147

Workflow file for this run

on: [push, pull_request]
name: R-CMD-check
jobs:
R-CMD-check:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v1
- uses: r-lib/actions/setup-r@v2
- uses: r-lib/actions/setup-pandoc@v1
- name: Install cURL
run: sudo apt-get update && sudo apt-get install -y curl libcurl4-openssl-dev
- name: Install dependencies
run: |
install.packages(c("remotes", "rcmdcheck"))
remotes::install_github("https://github.com/fischuu/GenomicTools")
remotes::install_deps(dependencies = TRUE)
shell: Rscript {0}
- name: Check
run: |
install.packages(c("remotes", "rcmdcheck"))
rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "warning")
shell: Rscript {0}