Copies GitHub Action workflow templates from the package's
inst/workflows directory to the .github/workflows directory of
the current project. The copied workflows can be used to run backend-specific
tests for PostgreSQL, SQL Server, and Databricks.
Usage
useGithubAction(
dbms_type = c("postgresql", "sqlserver", "databricks"),
overwrite = FALSE
)Examples
if (FALSE) { # \dontrun{
useGithubAction(dbms_type = "postgresql")
useGithubAction(
dbms_type = c("postgresql", "sqlserver", "databricks"),
overwrite = TRUE
)
} # }