You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Globstar performs a full analysis on every run, which can be time-consuming in CI/CD pipelines, and shows all issues every time. We need to implement incremental analysis that only processes changed files and their dependencies. This will significantly improve CI performance while showing only the relevant issues raised in the changes.
Requirements:
Git integration for detecting changed files
Dependency graph analysis for identifying affected files
CI-specific configuration options
The text was updated successfully, but these errors were encountered:
I was trying my hand at this issue.
For the Dependency Graph analysis, is the dependency graph to be made for the entire codebase, and then analyzing only the dependencies of the changed file? Or some other optimized approach is expected?
And is using tree-sitter the right way to extract dependencies of files?
Globstar performs a full analysis on every run, which can be time-consuming in CI/CD pipelines, and shows all issues every time. We need to implement incremental analysis that only processes changed files and their dependencies. This will significantly improve CI performance while showing only the relevant issues raised in the changes.
Requirements:
The text was updated successfully, but these errors were encountered: