You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When two tasks run in parallel, and one fails, the other seems to be cancelled, but this cancellation is not reported explicitly.
It would be significantly clearer to users what is happening if the reason for cancellation was explicitly reported.
So for example, instead of (GitHub Actions output):
⯈lint:mypy⯈CI:testtask: Failed to run task "CI:lint": task: Failed to run task "lint:mypy": exit status 1Error: Process completed with exit code 201.
have
⯈lint:mypy⯈CI:testtask: Terminated `CI:test` because parallel running task `CI:lint` failed.task: Failed to run task "CI:lint": task: Failed to run task "lint:mypy": exit status 1Error: Process completed with exit code 201.
The text was updated successfully, but these errors were encountered:
When two tasks run in parallel, and one fails, the other seems to be cancelled, but this cancellation is not reported explicitly.
It would be significantly clearer to users what is happening if the reason for cancellation was explicitly reported.
So for example, instead of (GitHub Actions output):
have
The text was updated successfully, but these errors were encountered: