StatusCheckable defines any type that can check if the status of a task is up-to-date.
| 8 | |
| 9 | // StatusCheckable defines any type that can check if the status of a task is up-to-date. |
| 10 | type StatusCheckable interface { |
| 11 | IsUpToDate(ctx context.Context, t *ast.Task) (bool, error) |
| 12 | } |
| 13 | |
| 14 | // SourcesCheckable defines any type that can check if the sources of a task are up-to-date. |
| 15 | type SourcesCheckable interface { |
no outgoing calls
no test coverage detected
searching dependent graphs…