GitHub Actions: Parallel and Sequential Execution

Поделиться
HTML-код
  • Опубликовано: 19 ноя 2024

Комментарии • 6

  • @aalyev
    @aalyev Год назад +1

    Thank you very much! Everything was clearly explained!

  • @faisalakml
    @faisalakml 7 месяцев назад

    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

    • @ambilykk
      @ambilykk  7 месяцев назад

      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

  • @santhoshkumaryacham
    @santhoshkumaryacham Год назад

    How to run jnuit cases parallely in test job.i have a requirement i need to make it down test cases running time

    • @ambilykk
      @ambilykk  Год назад

      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.