From 47a96fba2fbc995405fe8547d506048f507ed009 Mon Sep 17 00:00:00 2001 From: Trent Houliston Date: Fri, 22 Sep 2023 23:44:05 +1000 Subject: [PATCH] Turn on clang-tidy here --- .github/workflows/windows.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index 95ce4a51c..0bf359884 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -28,9 +28,10 @@ jobs: - name: MSVC c: cl cxx: cl - - name: GCC - c: gcc - cxx: g++ + # Code does not compile on GCC on windows + # - name: GCC + # c: gcc + # cxx: g++ # The type of runner that the job will run on runs-on: windows-latest @@ -71,7 +72,7 @@ jobs: -DBUILD_TESTS=ON ^ -DCMAKE_BUILD_TYPE=Release ^ -DCI_BUILD=ON ^ - -DENABLE_CLANG_TIDY=OFF + -DENABLE_CLANG_TIDY=ON - name: Build timeout-minutes: 30