Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Solved the issue #75
Description:
This PR introduces automated code analysis using the cloc tool to count lines of code in the repository. Here's a breakdown of the changes:
Cloning Repository: The script now clones the remote Git repository specified by the
repo_url
variable to a temporary directory using thegit clone
command.Code Analysis: After cloning the repository, the script navigates to the repository directory and uses the
cloc
command to count lines of code by language. This provides valuable insights into the composition of the codebase, including the number of lines, comments, and blank lines for each programming language present.Temporary Directory Cleanup: Once the code analysis is complete, the temporary directory created for cloning the repository is removed to ensure clean-up.