Skip to content

Fix to donor assignment plotting when there's only a single donor det… #86

Fix to donor assignment plotting when there's only a single donor det…

Fix to donor assignment plotting when there's only a single donor det… #86

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
#
# See https://github.com/r-lib/actions/tree/master/examples#readme for
# additional example workflows available for the R community.
name: DropSeq.utilities R package
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
paths: 'src/R/packages/DropSeq.utilities/**'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
container:
image: rocker/r2u:latest
steps:
- uses: actions/checkout@v3
- name: SessionInfo
run: R -q -e 'sessionInfo()'
- name: Install dependencies
run: |
setwd("src/R/packages/DropSeq.utilities")
install.packages(c("rcmdcheck"))
remotes::install_deps(dependencies = TRUE)
shell: Rscript {0}
- name: Check
run: |
setwd("src/R/packages/DropSeq.utilities")
rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "error")
shell: Rscript {0}