Hello @faisalakml , we normally run a bunch of test cases together. Please share me your testing framework details[XUnit, Unit, Selenium, etc.] to share a proper Actions workflow sample
Hello @santhoshkumaryacham To run our tests in GitHub Actions in parallel to improve test times, we need to run multiple testing jobs at the same time. In each test job instance we then need to execute a different subset of our tests. You can define a matrix strategy to handle the subset category of test cases or use multiple jobs to execute in parallel.
Thank you very much! Everything was clearly explained!
Glad it helped!
hi, i job for testing and i want to run more than 1. is it possible? and how to run multiple steps?
i just try using && but failed, like
Hello @faisalakml , we normally run a bunch of test cases together. Please share me your testing framework details[XUnit, Unit, Selenium, etc.] to share a proper Actions workflow sample
How to run jnuit cases parallely in test job.i have a requirement i need to make it down test cases running time
Hello @santhoshkumaryacham
To run our tests in GitHub Actions in parallel to improve test times, we need to run multiple testing jobs at the same time. In each test job instance we then need to execute a different subset of our tests. You can define a matrix strategy to handle the subset category of test cases or use multiple jobs to execute in parallel.