GitHub Action
C/C++ code linter (clang-tidy, clang-format, and cppcheck)
0.01
Pre-release
Github action for linting the C code. Uses clang-tidy, clang-format, and cppcheck.
Example of usage:
name: c-linter
on: [pull_request]
jobs:
c-linter:
name: c-linter
runs-on: ubuntu-latest
steps:
- name: c-linter
uses: ArtificialAmateur/cpp-linter-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}