diff --git a/.github/workflows/awesome_workflow.yml b/.github/workflows/awesome_workflow.yml index 98768b768..6be0169a8 100644 --- a/.github/workflows/awesome_workflow.yml +++ b/.github/workflows/awesome_workflow.yml @@ -129,10 +129,7 @@ jobs: print("clang-tidy:") for cpp_file in cpp_files: - subprocess.run(["clang-tidy", - "--format-style='{ BasedOnStyle: Google, UseTab: Never, IndentWidth: 4, TabWidth: 4, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 80, AccessModifierOffset: -3 }'", - "-checks=-*,google-*,portability-*", "--fix", - cpp_file, "--"], check=True, text=True) + subprocess.run(["clang-tidy", "--quiet", "--fix", cpp_file, "--"], check=True, text=True) # print("g++:") # compile_exts = tuple(".c .c++ .cc .cpp .cu .cxx".split())