From f61fe00c33bdbb6c2e293d6b713a9500f1569869 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Thu, 26 Dec 2024 09:49:48 -0500 Subject: [PATCH] ci: update lint action style --- .github/actions/lint-check/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/lint-check/action.yml b/.github/actions/lint-check/action.yml index 5d626f4e7..d9a32cb20 100644 --- a/.github/actions/lint-check/action.yml +++ b/.github/actions/lint-check/action.yml @@ -9,7 +9,7 @@ runs: shell: bash - name: Run format command - run: find src/ -regex '.*\.\(cpp\|hpp\|cc\|cxx\|h\|c\|m\|mm\)' -exec clang-format -style=file --assume-filename=$(pwd)/.clang-format -i {} \; + run: find src/ -regex '.*\.\(cpp\|hpp\|cc\|cxx\|h\|c\|m\|mm\)' -exec clang-format -i {} \; shell: bash - name: Find changes