13

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.

Dipendra Sharma
  • 2,404
  • 2
  • 18
  • 35
  • 3
    For what I saw on the Github Community (source: https://github.community/t/steps-in-parallel/16343) you can't achieve it with GHA at this moment (it is only possible for jobs). But on the same thread people gave alternatives (without using directly GHA) via background tasks or GNU parallel. – GuiFalourd Apr 22 '21 at 18:46
  • You can check [Mocha Parallel Jobs on Github Actions](https://stackoverflow.com/questions/67937238/mocha-parallel-jobs-on-github-actions) – Joel Jun 30 '21 at 09:23

1 Answers1

7

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

lukee
  • 843
  • 9
  • 12