GitHub Action workflow for running steps in parallel

16.4k views Asked by At

I am working on a project. I need to create a workflow to run integration tests on an iOS device.

Scenario: I've to run a local server at some port and in parallel I've run integration tests.

Query:

  1. Can I achieve this in Github Actions?
  2. If yes then how?

I'll be thankful for the help.

1

There are 1 answers

2
lukee On BEST ANSWER

There's no built in solution for parallel steps at the moment.

Workarounds:

If you would like to have this feature you can try voting on this feedback thing: https://github.com/github-community/community/discussions/14484