Makes a github workflow yaml file for a given source to be used as an action to check the data as a github action.
make_github_workflow(
source,
workflow_path = paste0(".github/workflows/", source, ".yaml"),
cron = "36 12 * * *"
)
character_array The name of the class to create the workflow for.
character_array The path to where the workflow file should be saved. Defaults to '.github/workflows/'
character_array the cron time to run the tests, defaults to 36 12 * * *, following the minute, hour, day(month), month and day(week) format.