From d3316302fe9d94afebf554adfb792d9b4a22e1ca Mon Sep 17 00:00:00 2001 From: Maryam Tahhan Date: Tue, 17 Dec 2024 10:59:37 -0500 Subject: [PATCH] actions: delete clang format clang-format is running in the pre-commit checks. There's no need for a separate workflow any more. Signed-off-by: Maryam Tahhan --- .github/workflows/clang-format.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/clang-format.yml diff --git a/.github/workflows/clang-format.yml b/.github/workflows/clang-format.yml deleted file mode 100644 index 1ddb6200..00000000 --- a/.github/workflows/clang-format.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: clang-format - -on: # yamllint disable-line rule:truthy - pull_request: - branches: [main] - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - uses: DoozyX/clang-format-lint-action@v0.18.2 - with: - source: '.' - exclude: 'examples/vpp-plugin' - extensions: 'h,cpp,c,cc' - clangFormatVersion: 18.1.8