From dd76722ab8546ada75cfa111fb797667efef7280 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Fri, 27 Sep 2024 11:03:02 +1000 Subject: [PATCH] Don't explicitly install clang-format. It's failing on Ubuntu 24.04, and probably (?) isn't needed anyway. --- .github/workflows/build.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ff7070b7..c4ab2332 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,8 +7,6 @@ jobs: steps: - name: Check out repository code uses: actions/checkout@v4 - - name: Install clang-format - run: pip install clang-format - name: Check source formatting run: | find native~/Runtime native~/Editor native~/Shared \( -iname '*.cpp' -o -iname '*.h' \) -print0 | xargs -0 clang-format --dry-run -Werror