| # Copyright 2023 Valve Corporation |
| # Copyright 2023 LunarG, Inc. |
| # |
| # SPDX-License-Identifier: Apache-2.0 |
| |
| name: format |
| |
| on: |
| push: |
| pull_request: |
| branches: |
| - main |
| |
| permissions: |
| contents: read |
| |
| jobs: |
| clang-format: |
| name: clang-format |
| runs-on: ubuntu-24.04 |
| strategy: |
| fail-fast: false |
| matrix: |
| path: |
| - 'include' |
| - 'src' |
| - 'tests' |
| steps: |
| - uses: actions/checkout@v5 |
| - name: clang-format version |
| run: clang-format --version |
| - name: Run clang-format |
| uses: jidicula/clang-format-action@v4.15.0 |
| with: |
| clang-format-version: '18' |
| check-path: ${{ matrix.path }} |