-
Notifications
You must be signed in to change notification settings - Fork 928
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9567 from satijalab/release/5.2.0
Release/5.2.0
- Loading branch information
Showing
84 changed files
with
1,698 additions
and
641 deletions.
There are no files selected for viewing
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 file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Integration Checks | ||
|
||
# Because `develop` is a protected branch this workflow is triggered when a PR | ||
# is opened/updated and again when it is merged. | ||
on: | ||
push: | ||
branches: | ||
- develop | ||
- master | ||
pull_request: | ||
branches: | ||
- develop | ||
- master | ||
|
||
jobs: | ||
check-package: | ||
runs-on: ubuntu-latest | ||
|
||
# Use the `satijalab/seurat-ci` Docker image as the runner environment. | ||
# This image is pre-configured with everything required for running | ||
# integration checks, for more details, see | ||
# https://hub.docker.com/repository/docker/satijalab/seurat-ci/general. | ||
container: | ||
image: satijalab/seurat-ci:latest | ||
|
||
steps: | ||
# Pull the latest changes from the repository down to the runner. | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
# Install the package and all its dependencies using scripts from | ||
# `littler`, see https://eddelbuettel.github.io/littler/ for details. | ||
- name: Install Dependencies | ||
run: installDeps.r -s | ||
|
||
# Run CRAN checks, if any ERRORs or WARNINGs are raised the check fails. | ||
# Certain tests are skipped when running as CRAN—skip all tests so they | ||
# can be run together in a subsequent step. | ||
- name: Run CRAN Checks (no tests) | ||
run: | | ||
rcmdcheck::rcmdcheck( | ||
args = c("--as-cran", "--no-tests"), | ||
error_on="warning" | ||
) | ||
shell: Rscript {0} | ||
|
||
# Because tests weren't included in CRAN checks, run them here. | ||
- name: Run Tests | ||
# Run this step even if the previous one failed. | ||
if: always() | ||
run: testthat::test_local() | ||
shell: Rscript {0} |
This file was deleted.
Oops, something went wrong.
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 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 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
Oops, something went wrong.