These GitHub actions are useful for programmatically conducting code review.

Measure Code Coverage

This GitHub action measures test coverage and uploads results to codecov using covr.

Secrets

Environment Variables

  • R_LIBS, a vector of paths prepended to existing .libPaths().

    Defaults to R_LIBS_WORKFLOW ([$HOME](https://developer.github.com/actions/creating-github-actions/accessing-the-runtime-environment/#filesystem)/lib/R/library) where they persist over the run of the workflow. All earlier or later actions that have R_LIBS_WORKFLOW in their .libPaths() can install to or load from this path.

    For more details, read the vignette on action isolation.

Arguments

None.

Example Usage

action "Install Package" {
  uses = "r-lib/ghactions/actions/install@master"
}