How to do Code coverage and integrated the same to the Git pipe line

Hi Venkat,

  1. For code coverage, see my post here: Need help for Unit Test Code coverage for SonarCloud

  2. For integrating your code coverage into a pipeline, you need to use a Continuous Integration (CI) service. Git itself is not a CI service. You can use Github or Azure DevOps or Travis CI for pipeline work. Here are some examples and tutorials:

Etc. I gave many examples that I just googled so take with a grain of salt.

Joe