bito-code-review[bot] commented on PR #42200: URL: https://github.com/apache/superset/pull/42200#issuecomment-5109995351
<!-- Bito Reply --> The observation is correct. GitHub Actions does not support a `parallel` key within a `jobs` step, and using it will cause the workflow to fail. To achieve parallel execution of steps within a single job, the standard approach is to use the `jobs.<job_id>.strategy.matrix` for parallel jobs, or simply define them as sequential steps if they do not need to run in parallel. If parallel execution of steps within a job is strictly required, one common workaround is to use a `matrix` strategy to run multiple jobs that perform the specific tasks, or to use a tool like `act` or custom scripts that manage concurrency, though these are not native GitHub Actions features. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
