Skip to content

Commit

Permalink
Actions update
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-d-campbell committed Jan 5, 2024
1 parent 206241e commit 927624e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/BioC-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,6 @@ jobs:
remotes::install_version("assertive.properties", version = "0.0.5", repos = "http://cran.us.r-project.org", upgrade = "never")
remotes::install_version("assertive.types", version = "0.0.3", repos = "http://cran.us.r-project.org", upgrade = "never")
remotes::install_version("multipanelfigure", version = "2.1.2", repos = "http://cran.us.r-project.org", upgrade = "never")
remotes::install_version("Matrix", version = "1.6.4", repos = "http://cran.us.r-project.org", upgrade = "never")
remotes::install_version("SeuratObject", version = "4.1.4", repos = "http://cran.us.r-project.org", upgrade = "never")
remotes::install_version("Seurat", version = "4.4.0", repos = "http://cran.us.r-project.org", upgrade = "never")
BiocManager::install("celda")
shell: Rscript {0}
Expand All @@ -59,12 +56,19 @@ jobs:
with:
extra-packages: |
any::rcmdcheck
cache-version: 2
cache: false

- name: Install XQuartz on macOS
if: runner.os == 'macOS'
run: brew install xquartz --cask

- name: Install Old Seurat
run: |
remotes::install_version("Matrix", version = "1.6.4", repos = "http://cran.us.r-project.org", upgrade = "never")
remotes::install_version("SeuratObject", version = "4.1.4", repos = "http://cran.us.r-project.org", upgrade = "never")
remotes::install_version("Seurat", version = "4.4.0", repos = "http://cran.us.r-project.org", upgrade = "never")
shell: Rscript {0}

- name: Run BiocCheck
run: |
BiocManager::install("BiocCheck")
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,13 @@ jobs:
remotes::install_version("assertive.types", version = "0.0.3", repos = "http://cran.us.r-project.org", upgrade = "never")
remotes::install_version("multipanelfigure", version = "2.1.2", repos = "http://cran.us.r-project.org", upgrade = "never")
remotes::install_version("Matrix", version = "1.6.4", repos = "http://cran.us.r-project.org", upgrade = "never")
remotes::install_version("SeuratObject", version = "4.1.4", repos = "http://cran.us.r-project.org", upgrade = "never")
remotes::install_version("Seurat", version = "4.4.0", repos = "http://cran.us.r-project.org", upgrade = "never")
BiocManager::install("celda")
shell: Rscript {0}

- uses: r-lib/actions/setup-r-dependencies@v2
with:
cache-version: 2
cache: false
extra-packages: |
any::rcmdcheck
needs: check
Expand All @@ -100,6 +98,13 @@ jobs:
if: runner.os == 'macOS'
run: brew install xquartz --cask

- name: Install Old Seurat
run: |
remotes::install_version("Matrix", version = "1.6.4", repos = "http://cran.us.r-project.org", upgrade = "never")
remotes::install_version("SeuratObject", version = "4.1.4", repos = "http://cran.us.r-project.org", upgrade = "never")
remotes::install_version("Seurat", version = "4.4.0", repos = "http://cran.us.r-project.org", upgrade = "never")
shell: Rscript {0}

- name: Check
env:
_R_CHECK_CRAN_INCOMING_: false
Expand Down

0 comments on commit 927624e

Please sign in to comment.