Merge pull request #4577 from khaneliman/cava #1652
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: clang-format | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-format-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| # TODO: bump to clang 19 release | |
| # - uses: DoozyX/[email protected] | |
| - uses: DoozyX/clang-format-lint-action@558090054b3f39e3d6af24f0cd73b319535da809 | |
| name: clang-format | |
| with: | |
| source: "." | |
| extensions: "hpp,h,cpp,c" | |
| style: "file:.clang-format" | |
| clangFormatVersion: 19 |