Skip to content

๐Ÿ” clang-tidy plugin

What it does

Run static analysis on C++ code as part of a pipeline.

Why it exists

Use clang-tidy when you want code quality checks to travel with the same pipeline definition across machines and environments.

Example

steps:
  - name: "Analyze C++ code"
    plugin:
      name: "clang-tidy"
      sources: ["src/*.cpp"]
      headers: ["include/**/*.hpp"]