(actionOpts *ActionsOpts)
| 37 | } |
| 38 | |
| 39 | func NewPolicyLint(actionOpts *ActionsOpts) (*PolicyLint, error) { |
| 40 | return &PolicyLint{ |
| 41 | ActionsOpts: actionOpts, |
| 42 | }, nil |
| 43 | } |
| 44 | |
| 45 | func (action *PolicyLint) Run(_ context.Context, opts *PolicyLintOpts) (*PolicyLintResult, error) { |
| 46 | // Read policies |
no outgoing calls
no test coverage detected