Skip to content

ci: adjust github ci with testPackage. + fix links in README #53

ci: adjust github ci with testPackage. + fix links in README

ci: adjust github ci with testPackage. + fix links in README #53

Workflow file for this run

on:
push:
pull_request:
name: test-coverage
jobs:
test-coverage:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
working-directory: "./tinytest2JUnit"
extra-packages: any::covr
needs: coverage
- name: Test coverage
run: |
covr::codecov(
path = "./tinytest2JUnit",
quiet = FALSE,
clean = FALSE,
install_path = file.path(Sys.getenv("RUNNER_TEMP"), "package")
)
shell: Rscript {0}