Is possible run command on different terminal on Github action? Is possible run command on different terminal on Github action? flask flask

Is possible run command on different terminal on Github action?


You can use nohup command to run the flask server in the background instead of running on a different terminal.

nohup python app.py

Wait for some time after running this command using the sleep command and then run your tests.