Skip to content

Fix: add Rcpp importFrom to resolve NOTE #2

Fix: add Rcpp importFrom to resolve NOTE

Fix: add Rcpp importFrom to resolve NOTE #2

Workflow file for this run

name: BiocCheck
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
BiocCheck:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
with:
r-version: 'devel'
use-public-rspm: true
- uses: r-lib/actions/setup-pandoc@v2
- name: Install dependencies
run: |
install.packages(c("remotes", "BiocManager"))
BiocManager::install(c("BiocCheck"), ask = FALSE, update = TRUE)
remotes::install_deps(dependencies = TRUE)
shell: Rscript {0}
- name: BiocCheck
run: |
BiocCheck::BiocCheck(".", `quit-with-status` = TRUE, `no-check-bioc-help` = TRUE)
shell: Rscript {0}