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 7f9f214
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/integration_checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,12 @@ 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.
# Run CRAN checks, if any ERRORs or WARNINGs are raised the check fails
# and the output of `rcmdcheck` will be uploaded as an artifact.
- 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

Expand Down

0 comments on commit 7f9f214

Please sign in to comment.