Skip to contents

These functions call reusable workflows centrally maintained at 2DegreesInvesting/tiltDevTools.

  • use_github_workflow_check() calls the same workflow you can get with usethis::use_github_actions("check-standard"). The benefit is that it's standardized across tilt* repos and you don't have to update it yourself.

  • use_github_workflow_check_revdep() works for packages and reverse dependencies under the same, 2DegreesInvesting organization.

Usage

use_github_workflow_check_revdep(package)

use_github_workflow_check()

Arguments

package

Character. The name of the reverse dependency you want to check. it must be a package under the organization 2DegreesInvesting.

Value

Called for its side effect.

Examples

if (FALSE) {
# Run R CMD check on your package
use_github_workflow_check()

# R CMD check on a reverse dependencies of your package
use_github_workflow_check_revdep("tiltWebTool")
}