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