From 48587d987bfbf54b9aba368633bfcf226ec1bb90 Mon Sep 17 00:00:00 2001 From: Jared Van Bortel Date: Fri, 8 Nov 2024 18:42:02 -0500 Subject: [PATCH] fix syntax Signed-off-by: Jared Van Bortel --- .github/workflows/cpp-linter.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cpp-linter.yml b/.github/workflows/cpp-linter.yml index ef6628e6..ded87e38 100644 --- a/.github/workflows/cpp-linter.yml +++ b/.github/workflows/cpp-linter.yml @@ -40,13 +40,12 @@ jobs: -DLLMODEL_KOMPUTE=OFF - uses: cpp-linter/cpp-linter-action@v2 id: linter - env: - with: - style: '' # no clang-format - extensions: 'c,cpp,h,inl' - tidy-checks: '' # use .clang-tidy config - database: gpt4all-chat/build - version: 18 + with: + style: '' # no clang-format + extensions: 'c,cpp,h,inl' + tidy-checks: '' # use .clang-tidy config + database: gpt4all-chat/build + version: 18 - name: Fail Fast if: steps.linter.outputs.clang-tidy-checks-failed > 0 run: exit 1