Skip to content

RC: CRAN 0.12.5 (#968) #355

RC: CRAN 0.12.5 (#968)

RC: CRAN 0.12.5 (#968) #355

# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
name: test-coverage-examples
jobs:
test-coverage-examples:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
pak-version: devel
upgrade: 'TRUE'
extra-packages: |
any::covr
local::.
needs: coverage
- name: Test example coverage
run: |
options(crayon.enabled = TRUE)
library(covr)
coverage <- covr::package_coverage(
type = c("examples", "vignettes"),
quiet = TRUE,
commentDonttest = FALSE,
commentDontrun = FALSE
)
print(coverage)
percent_coverage <- covr::percent_coverage(coverage)
threshold <- 90
cli::cli_rule()
if (percent_coverage < threshold) {
cli::cli_abort("Code coverage using examples is below the required threshold ({threshold}%).")
} else {
cli::cli_alert_success("Code coverage using examples is above the required threshold ({threshold}%).")
}
cli::cli_rule()
shell: Rscript {0}