A GitHub action to automatically execute a Clang Tidy linter on C/C++ files changed in a pull request.
workflow "on pull request, lint with clang-tidy " {
on = "pull_request"
resolves = ["clang-tidy"]
}
action "clang-tidy" {
uses = "muxee/clang-tidy-action@master"
secrets = ["GITHUB_TOKEN"]
args = "-checks=*"
}
Please see the official documentation for more information