| name: Formatting | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| jobs: | |
| clang-format-checking: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: DoozyX/clang-format-lint-action@v0.14 | |
| with: | |
| source: '.' | |
| extensions: 'h,c,cc,proto' | |
| clangFormatVersion: 14 |