runAfterRun method
Runs the configured after_run hook. Failures are swallowed per spec.
Implementation
Future<WorkspaceHookOutcome> runAfterRun(Workspace workspace) {
return hookRunner.run(
kind: WorkspaceHookKind.afterRun,
workspacePath: workspace.path,
hooks: hooksConfig,
);
}