clang-format improvements #7
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Code Formatting | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| clang-format: | |
| name: Run clang-format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| # Runs clang-format over the repository codebase | |
| - name: Check format | |
| uses: jidicula/clang-format-action@v4.11.0 | |
| with: | |
| clang-format-version: '19' | |
| check-path: 'include tests' |