From bd6e55b12e350b87a41c4342d35779b6cf9aa92e Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Fri, 3 Apr 2026 16:35:57 +0100 Subject: [PATCH] Added manually triggered clang-format action # Conflicts: # .github/workflows/clang-format_update.yaml --- .github/workflows/clang-format_update.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/clang-format_update.yaml b/.github/workflows/clang-format_update.yaml index 6d1c8dd9..bc56ab13 100644 --- a/.github/workflows/clang-format_update.yaml +++ b/.github/workflows/clang-format_update.yaml @@ -7,13 +7,14 @@ jobs: clang-format: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - name: Checkout code + uses: actions/checkout@v4 - name: Install clang-format + run: | sudo apt-get update sudo apt-get install -y --no-install-recommends clang-format clang-format --version run: | - find . \( -name '*.cpp' -o -name '*.h' -o -name '*.c' \) - xargs clang-format --dry-run --Werror + find . \( -name '*.cpp' -o -name '*.h' -o -name '*.c' \) | xargs clang-format --dry-run --Werror