Merge main into wilms azimuth branch #85
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
on: | |
pull_request: | |
branches: | |
- main | |
- feature/* | |
paths: | |
- packages/rOpenScPCA/** | |
name: Check the rOpenScPCA package | |
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: 4.4.0 | |
use-public-rspm: true | |
- name: Set up dependencies | |
uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
working-directory: "packages/rOpenScPCA/" | |
extra-packages: | | |
any::rcmdcheck | |
needs: check | |
- name: Check package | |
uses: r-lib/actions/check-r-package@v2 | |
with: | |
working-directory: "packages/rOpenScPCA/" | |
args: 'c("--no-manual")' |