Add dummy feature for nrow=1 altExps #62
Workflow file for this run
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
# This GHA checks rOpenScPCA using the repository's renv environment which records | |
# dependencies from Bioconductor 3.19, the version we expect rOpenScPCA to be most | |
# commonly used with | |
on: | |
pull_request: | |
branches: | |
- main | |
- feature/* | |
name: R-CMD-CHECK-renv | |
jobs: | |
R-CMD-check-renv: | |
runs-on: ubuntu-22.04 | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Set up R | |
uses: r-lib/actions/setup-r@v2 | |
with: | |
r-version: "renv" | |
use-public-rspm: true | |
- name: Install additional system dependencies | |
run: | | |
sudo apt-get install -y libcurl4-openssl-dev libglpk40 | |
- name: Set up renv and install packages | |
uses: r-lib/actions/setup-renv@v2 | |
- name: Install additional dependencies for testing | |
run: | | |
install.packages("rcmdcheck") | |
shell: Rscript {0} | |
- name: Check package | |
uses: r-lib/actions/check-r-package@v2 | |
with: | |
args: 'c("--no-manual")' |