RunPoutineOnDirectory runs poutine security scanner once on a directory. Poutine scans all workflows in a directory, so it only needs to run once.
(workflowDir string, verbose bool, strict bool)
| 49 | // RunPoutineOnDirectory runs poutine security scanner once on a directory. |
| 50 | // Poutine scans all workflows in a directory, so it only needs to run once. |
| 51 | func RunPoutineOnDirectory(workflowDir string, verbose bool, strict bool) error { |
| 52 | return runPoutineOnDirectory(workflowDir, verbose, strict) |
| 53 | } |
| 54 | |
| 55 | // RunRunnerGuardOnDirectory runs runner-guard taint analysis scanner once on a directory. |
| 56 | // Runner-guard scans all workflows in a directory, so it only needs to run once. |
nothing calls this directly
no test coverage detected