Static analysis in CI
Nobody has claimed this yet.
- Dominant language
- C++
- Stars
- 76
- Forks
- 19
- PR merge metrics
- No merged PRs in 30d
Description
The contributing document suggests that contributors ought to format the code before submission, however there is no enforcement in CI. I would like to add it to the CI, however it's not stated which version of clang-format should be used. Different versions of clang-format may format some code differently, so it's important to specify the version.
On the same note, I'd like to also know your opinions on other forms of static analysis, such as spell checking. I have been using codespell personally. If you find it satisfactory, I'd also like to add that in the same PR.
To make efficient use of CI resources, I would like to structure CI as a single file with such job and matrix configuration:
flowchart
A["clang-format
codespell"]
B["CMake (Windows)
CMake (Ubuntu)"]
C["CodeQL (Windows)
CodeQL (Ubuntu)"]
A --> B
A --> C
You can see this example, where nothing else is done until the lint job is done.
Making this chart also makes me question whether the separate CMake jobs are necessary with CodeQL jobs being a thing.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Review the contributing document and the repository's existing CI configuration first, then compare it with the linked workflow example. A complete change would specify the clang-format version, decide whether codespell belongs in CI, add the proposed lint job structure, and resolve whether separate CMake jobs remain alongside CodeQL.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- cpp, github-actions
- Domain
- ci-cd, tooling
- Issue type
- Feature
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 30/100