Hey, hopefully a quick question… I've got this step:
func (m *Beeps) All(
ctx context.Context,
// +optional
// +defaultPath=.
source *dagger.Directory,
) []*dagger.Container {
return []*dagger.Container{
m.Build(ctx, source, false),
m.Clippy(ctx, source),
m.Typos(ctx, source),
}
}
I'd like those calls to run in parallel. Is there a nice way to do this that doesn't involve the boilerplate of an error group?