Merge pull request #14 from AlexsLemonade/jashapiro/dedup-symbols #7
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 dependencies using current packages from CRAN and Bioconductor | |
on: | |
push: | |
branches: | |
- main | |
- feature/* | |
name: R-CMD-CHECK-release | |
jobs: | |
R-CMD-check-release: | |
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: | |
use-public-rspm: true | |
- name: Remove renv so environment will not be overridden | |
run: rm -f renv.lock .Rprofile | |
- name: Set up dependencies | |
uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
extra-packages: any::rcmdcheck | |
needs: check | |
- name: Check package | |
uses: r-lib/actions/check-r-package@v2 | |
with: | |
args: 'c("--no-manual")' |