From e4aeac7b1ba524818e688ce1d95a7f6693001ad6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Fonseca?= Date: Tue, 26 Sep 2023 00:42:01 +0100 Subject: [PATCH] fix: disable clang-tidy on code coverage --- .github/workflows/create-coverage-report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-coverage-report.yml b/.github/workflows/create-coverage-report.yml index befb06b20..9040a9cf0 100644 --- a/.github/workflows/create-coverage-report.yml +++ b/.github/workflows/create-coverage-report.yml @@ -20,7 +20,7 @@ jobs: sudo apt-get install xorg-dev libglu1-mesa-dev gcc-11 g++-11 lcov - name: Configure CMake - run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_COVERAGE=ON -DBUILD_CORE_TESTS=ON + run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_COVERAGE=ON -DBUILD_CORE_TESTS=ON -DUSE_CLANG_TIDY=OFF shell: bash env: CC: gcc-11