ci: Clang Tidy on GitHub Actions#5090
Merged
kodiakhq[bot] merged 46 commits intoacts-project:mainfrom Feb 18, 2026
Merged
Conversation
b050af8 to
7da1f54
Compare
e9772d4 to
548358b
Compare
fe17cc0 to
8bebdcb
Compare
Contributor
0ac97a6 to
354d284
Compare
kodiakhq bot
pushed a commit
that referenced
this pull request
Feb 16, 2026
In preparation for #5090
354d284 to
0b35276
Compare
9518cca to
ef0e884
Compare
andiwand
added a commit
that referenced
this pull request
Feb 17, 2026
`clang-tidy` CI appears to be hanging consistently on all commits based on current main right now. It is disabled here for now until and followed up by #5090
4b90b2e to
2e14ace
Compare
andiwand
previously approved these changes
Feb 17, 2026
fb5e4a1 to
fe634bf
Compare
andiwand
approved these changes
Feb 17, 2026
|
JustusRudolph
pushed a commit
to JustusRudolph/acts
that referenced
this pull request
Feb 23, 2026
In preparation for acts-project#5090
JustusRudolph
pushed a commit
to JustusRudolph/acts
that referenced
this pull request
Feb 23, 2026
`clang-tidy` CI appears to be hanging consistently on all commits based on current main right now. It is disabled here for now until and followed up by acts-project#5090
JustusRudolph
pushed a commit
to JustusRudolph/acts
that referenced
this pull request
Feb 24, 2026
In preparation for acts-project#5090
JustusRudolph
pushed a commit
to JustusRudolph/acts
that referenced
this pull request
Feb 24, 2026
`clang-tidy` CI appears to be hanging consistently on all commits based on current main right now. It is disabled here for now until and followed up by acts-project#5090
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.



This PR adds a GitHub Actions based clang-tidy job. In PR mode, it will only run on changed files while on
mainit will run on all. Files are matched against translation units that are found in the compilation database that we get from CMake, since this allows us to have valid compiler flags. Headers are explicitly matched to their generated TUs, or skipped if not found. Onmainall TUs in the compilation database are processed.Results are reported in the job log and are surfaced in the diff (if there are not too many).
Blocked by