'GitHub Action workflow for running steps in parallel
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:
- Can I achieve this in Github Actions?
- If yes then how?
I'll be thankful for the help.
Solution 1:[1]
There's no built in solution for parallel steps at the moment.
Workaround:
Run your server in the background (server &
). Or as a daemon if it has it built in.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | lukee |