ci: add GitHub Actions workflow for clang-format.#40
Conversation
|
Note Gemini is unable to generate a summary for this pull request due to the file types involved not being currently supported. |
Review Summary by QodoAdd GitHub Actions workflow for automated clang-format
WalkthroughsDescription• Adds GitHub Actions workflow for automated code formatting • Installs and runs clang-format-22 on C++ source files • Automatically commits formatting changes to pull requests Diagramflowchart LR
PR["Pull Request Triggered"]
CHECKOUT["Checkout Repository"]
INSTALL["Install clang-format-22"]
FORMAT["Run clang-format on C++ files"]
COMMIT["Auto-commit formatting changes"]
PR -- "on: pull_request" --> CHECKOUT
CHECKOUT --> INSTALL
INSTALL --> FORMAT
FORMAT --> COMMIT
File Changes1. .github/workflows/clang-format.yml
|
Code Review by Qodo
1.
|
…ences and switch to direct apt repository installation for clang-format-22.
No description provided.