Hello, we have SonarCloud integrated in our project and we’re trying to improve the amount of time it requires to perform the analysis.
We’re running it on Github Actions as CI system and we’re using dotnet-scanner as the analysis runner for our .NetCore 3.1 project. If we build the project without dotnet-scanner the build time is around 3mins, but if we decorate that build with begin/end commands, our build time grows to 15-20mins (a 5x growth).
Is this something expected? Is there any way to debug and get more details on what is making it this slow?
Thank you so much!