From acde74edf6085bd763df8bdca3844fd9f6c5fb2a Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Wed, 8 Jul 2020 14:58:06 -0400 Subject: [PATCH] commenting redundant clang-format as clang-tidy will take care of that --- .github/workflows/awesome_workflow.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/awesome_workflow.yml b/.github/workflows/awesome_workflow.yml index 5094ef363..98768b768 100644 --- a/.github/workflows/awesome_workflow.yml +++ b/.github/workflows/awesome_workflow.yml @@ -43,18 +43,18 @@ jobs: fi done git commit -am "formatting filenames $GITHUB_SHA" || true - - name: Clang Formatter - run: | - for fname in $(find . -name '*.cpp' -o -name '*.h') - do - clang-format --verbose -i --style="$line1 $line2 $line3 $line4" "$fname" - done - git commit -am "formatting source-code for $GITHUB_SHA" || true - env: - line1: "{ BasedOnStyle: Google, UseTab: Never," - line2: "IndentWidth: 4, TabWidth: 4, " - line3: "AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false," - line4: "ColumnLimit: 80, AccessModifierOffset: -3 }" + # - name: Clang Formatter + # run: | + # for fname in $(find . -name '*.cpp' -o -name '*.h') + # do + # clang-format --verbose -i --style="$line1 $line2 $line3 $line4" "$fname" + # done + # git commit -am "formatting source-code for $GITHUB_SHA" || true + # env: + # line1: "{ BasedOnStyle: Google, UseTab: Never," + # line2: "IndentWidth: 4, TabWidth: 4, " + # line3: "AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false," + # line4: "ColumnLimit: 80, AccessModifierOffset: -3 }" - name: Update DIRECTORY.md shell: python