Add t35_identifier_length and move descr to hrsd #222
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: clang-format Check | |
| on: [push, pull_request] | |
| jobs: | |
| formatting-check: | |
| name: Formatting Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install clang-format | |
| run: | | |
| wget https://apt.llvm.org/llvm.sh | |
| chmod +x llvm.sh | |
| sudo ./llvm.sh 18 | |
| sudo apt-get install -y clang-format-18 | |
| - name: Run clang-format check on IsoLib/libisomediafile | |
| run: | | |
| find IsoLib/libisomediafile \( -name "*.h" -o -name "*.cpp" -o -name "*.c" \) | \ | |
| xargs clang-format-18 --dry-run --Werror -style=file | |
| - name: Run clang-format check on IsoLib/t35_tool | |
| run: | | |
| find IsoLib/t35_tool \( -name "*.h" -o -name "*.cpp" -o -name "*.c" \) | \ | |
| xargs clang-format-18 --dry-run --Werror -style=file |