Skip to content

Commit

Permalink
Tweak check-package after Docker image update
Browse files Browse the repository at this point in the history
  • Loading branch information
dcollins15 committed Dec 5, 2024
1 parent 622368b commit b04dc5a
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/integration_checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
check-package:
runs-on: ubuntu-latest

# Use the `satijalab/seurat-ci` Docker image as the container environment.
# 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.
Expand All @@ -29,19 +29,15 @@ jobs:

# Install the package and _all_ its dependencies.
- name: Install Dependencies
run: installAllDeps.r
run: installDeps.r -s && install.r Seurat

# Run CRAN checks, if any ERRORs or WARNINGs are raised the check fails.
- name: Run Checks
run: |
rcmdcheck::rcmdcheck(
args = c("--as-cran"),
error_on="warning"
)
run: rcmdcheck::rcmdcheck(args = "--as-cran", error_on="warning")
shell: Rscript {0}
continue-on-error: true

# Build the pkgdown site.
# Build the `pkgdown` site, if any errors are raised the check fails.
- name: Build Website
run: |
pkgdown::build_site_github_pages(
Expand Down

0 comments on commit b04dc5a

Please sign in to comment.