[io] Fix out-of-bounds read/write when parsing OBJ face indices #2688
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-tidy | |
| 'on': | |
| - push | |
| - pull_request | |
| jobs: | |
| tidy: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: 'pointcloudlibrary/env:24.04' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run clang-tidy | |
| run: > | |
| bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" | |
| cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON | |
| -DCMAKE_CXX_COMPILER=/usr/bin/clang-18 | |
| -DCMAKE_C_COMPILER=/usr/bin/clang-18 . \ | |
| -DBUILD_benchmarks=ON \ | |
| -DBUILD_examples=ON \ | |
| -DBUILD_surface_on_nurbs=ON \ | |
| -DBUILD_simulation=ON \ | |
| -DBUILD_global_tests=ON | |
| run-clang-tidy -header-filter='.*' |