diff --git a/.github/workflows/bioc-check-new.yaml b/.github/workflows/bioc-check-new.yaml index 097a5aa..b4d3a11 100644 --- a/.github/workflows/bioc-check-new.yaml +++ b/.github/workflows/bioc-check-new.yaml @@ -27,9 +27,9 @@ jobs: - name: Run BiocCheck run: | bc_res <- BiocCheck::BiocCheck() - print(paste0("Errors": length(bc_res$error), "\n")) - print(paste0("Warnings": length(bc_res$warning), "\n")) - print(paste0("Notes": length(bc_res$note), "\n")) + print(paste0("Errors: ", length(bc_res$error), "\n")) + print(paste0("Warnings: ", length(bc_res$warning), "\n")) + print(paste0("Notes: ", length(bc_res$note), "\n")) n_errors <- length(bc_res$error) Sys.setenv("BC_ERRORS" = n_errors) shell: Rscript {0}