View source: R/useGithubAction.R
| useGithubAction | R Documentation |
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.
useGithubAction(
dbms_type = c("postgresql", "sqlserver", "databricks"),
overwrite = FALSE
)
dbms_type |
A character vector of supported DBMS types to process.
Supported values are |
overwrite |
A logical value indicating whether to overwrite existing
workflow files in the |
Invisibly returns TRUE when the selected workflow files are
copied successfully.
## Not run:
useGithubAction(dbms_type = "postgresql")
useGithubAction(
dbms_type = c("postgresql", "sqlserver", "databricks"),
overwrite = TRUE
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.