Skip to content

Update README.Rmd

Update README.Rmd #243

Workflow file for this run

name: Test Coverage
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
workflow_dispatch:
jobs:
test-coverage:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
CODCOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
steps:
- uses: actions/[email protected]
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::covr
needs: coverage
- name: Test coverage
run: |
covr::codecov(
quiet = FALSE,
clean = FALSE,
coverage = covr::package_coverage(line_exclusions = list("R/utils-feedback.R")),
install_path = file.path(Sys.getenv("RUNNER_TEMP"), "package")
)
shell: Rscript {0}
- name: Show testthat output
if: always()
run: |
## --------------------------------------------------------------------
find ${{ runner.temp }}/package -name 'testthat.Rout*' -exec cat '{}' \; || true
shell: bash
- name: Upload test results
if: failure()
uses: actions/[email protected]
with:
name: coverage-test-failures
path: ${{ runner.temp }}/package