-
-
Notifications
You must be signed in to change notification settings - Fork 88
Open
Labels
Description
Is it possible to add a feature to be able to have parallel executions?
One Example:
"pre-commit": {
"enabled": true,
"actions": [
{
"action": "Action1"
},
{
"action": "\\Parallel\\Actions",
"actions": [
{
"action": "Action2"
},
{
"action": "Action3"
}
]
},
{
"action": "Action4"
}
]
},
Execute Action1
↓ (wait to finnish)
Execute Action2 and Action3 in parallel
↓ (wait to finnish)
Execute Action4
robertfausk, DiegoRBaquero, ukickeru and patrickz-c24