Merge pull request #183 from jgockley62/test_resolve #741
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: 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 dpkg-dev zlib1g-dev libssl-dev libffi-dev zlib1g-dev libbz2-dev liblzma-dev build-essential libglpk40 openssh-client curl nano less libxt6 libcurl4-openssl-dev libgsl-dev git python3 python3-pip | |
- 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")) | |
remotes::install_github("https://github.com/fischuu/GenomicTools") | |
rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "warning") | |
shell: Rscript {0} |