Skip to content

Commit

Permalink
add BiocCheck step
Browse files Browse the repository at this point in the history
  • Loading branch information
LiNk-NY committed Aug 15, 2024
1 parent 2a13a70 commit d1a480a
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/basic_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,20 @@ jobs:
remotes::install_cran(c("rcmdcheck", "covr"))
shell: Rscript {0}

- name: Check
- name: Run rcmdcheck
env:
_R_CHECK_CRAN_INCOMING_REMOTE_: false
run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "warning", check_dir = "check")
shell: Rscript {0}

- name: Run BiocCheck
env:
DISPLAY: ':99.0'
run: |
BiocCheck::BiocCheck(
dir('check', 'tar.gz$', full.names = TRUE),
`quit-with-status` = FALSE,
`no-check-R-ver` = TRUE,
`no-check-bioc-help` = TRUE
)
shell: Rscript {0}

0 comments on commit d1a480a

Please sign in to comment.