1name: clang-format-lint 2on: 3 push: {} 4 pull_request: {} 5 6jobs: 7 job: 8 name: check-clang-format 9 runs-on: ubuntu-latest 10 11 steps: 12 - uses: actions/checkout@v3 13 - uses: DoozyX/clang-format-lint-action@v0.13 14 with: 15 source: './include/benchmark ./src ./test' 16 extensions: 'h,cc' 17 clangFormatVersion: 12 18 style: Google 19