Run steps in parallel

Hi,
I was wondering how to run steps in parallel on bitrise. I can’t seem to find any documentation saying how to achieve this. For example, I would like lint and dekekt on android to run at the same time. Is there any way to make this happen? Here’s a picture of what I’m trying to achieve

1 Like

Such effect is not achievable directly.
However, you can run build_app in parent workflow, preceded by Bitrsie Start Build step which invokes all the children workflows you wand and followed by Bitrise Wait for build.
In such case update_dependencies will be duplicated but build_app can be also paralellized.

BTW
AFAIK detekt by default includes all ktlint rules.

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.