Small fix to the compute_pbmc_cellwise_logliks.R analysis script. #100
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
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples | |
on: | |
push: | |
branches: [main, master] | |
pull_request: | |
branches: [main, master] | |
name: R-CMD-check | |
jobs: | |
R-CMD-check: | |
runs-on: macos-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
R_KEEP_PKG_SOURCE: yes | |
_R_CHECK_FORCE_SUGGESTS_: false | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: r-lib/actions/setup-r@v2 | |
with: | |
use-public-rspm: true | |
- name: Install dependencies | |
run: | | |
install.packages(c("remotes","rcmdcheck","testthat","devtools")) | |
install.packages(c("MatrixExtra","distr","Rcpp","RcppParallel")) | |
install.packages(c("RcppArmadillo","testthat","knitr","rmarkdown")) | |
install.packages(c("daarem")) | |
shell: Rscript {0} | |
- name: Check | |
run: | | |
options(crayon.enabled = TRUE) | |
rcmdcheck::rcmdcheck(args = c("--no-manual","--ignore-vignettes"), | |
error_on = "error",build_args = "--no-build-vignettes") | |
shell: Rscript {0} |