From e4324f8e80797a18d62c95b4e5f8f46d5194f6cd Mon Sep 17 00:00:00 2001 From: Petr Mironychev <9195189+Palm1r@users.noreply.github.com> Date: Fri, 8 Aug 2025 15:23:38 +0200 Subject: [PATCH] refactor: Remove checking format on CI --- .github/workflows/check_formatting.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/check_formatting.yml diff --git a/.github/workflows/check_formatting.yml b/.github/workflows/check_formatting.yml deleted file mode 100644 index 7a33ded..0000000 --- a/.github/workflows/check_formatting.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Check formatting - -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - format: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Install dependencies - run: | - sudo apt-get update - sudo apt-get install -y clang-format-19 - - name: Check formatting - run: | - clang-format-19 --style=file -i $(git ls-files | fgrep .hpp) - clang-format-19 --style=file -i $(git ls-files | fgrep .cpp) - git diff --exit-code || exit 1