Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 734 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 734 Bytes

Clang Tidy Action

Version License

A GitHub action to automatically execute a Clang Tidy linter on C/C++ files changed in a pull request.

Usage

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