From 8b70a9f5744a5d75af68a88bfe5608651c2b6be7 Mon Sep 17 00:00:00 2001 From: Henry Moore Date: Wed, 8 Jan 2025 22:07:49 +0000 Subject: [PATCH] try fixing clang tidy --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3cf1717a..46934639 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -92,8 +92,10 @@ jobs: files: | **.cpp **.hpp + - name: Install clang tidy 18 + run: sudo apt install clang-tidy-18 - if: ${{ steps.changed-cpp-files.outputs.all_changed_files != '' }} - run: run-clang-tidy -j $(nproc --all) -p build/ -export-fixes clang-tidy-fixes.yaml -config "$(cat src/fuse/.clang-tidy)" ${{ steps.changed-cpp-files.outputs.all_changed_files }} + run: run-clang-tidy -j $(nproc --all) -p build/ -export-fixes clang-tidy-fixes.yaml -config "$(cat src/fuse/.clang-tidy)" -clang-tidy-binary clang-tidy-18 ${{ steps.changed-cpp-files.outputs.all_changed_files }} working-directory: /colcon_ws - uses: asarium/clang-tidy-action@v1.0 with: