aboutsummaryrefslogtreecommitdiff
path: root/third_party/upb/.github/workflows/clang_format.yml
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/upb/.github/workflows/clang_format.yml')
-rw-r--r--third_party/upb/.github/workflows/clang_format.yml22
1 files changed, 0 insertions, 22 deletions
diff --git a/third_party/upb/.github/workflows/clang_format.yml b/third_party/upb/.github/workflows/clang_format.yml
deleted file mode 100644
index 5103500586..0000000000
--- a/third_party/upb/.github/workflows/clang_format.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-name: Check ClangFormat
-
-on:
- push:
- branches:
- - main
- - '[0-9]+.x'
- pull_request:
- branches:
- - main
- - '[0-9]+.x'
- workflow_dispatch:
-
-jobs:
- check_clang_format:
- runs-on: ubuntu-20-large
- steps:
- - uses: actions/checkout@v2
- - name: Run ClangFormat
- run: find . | grep -E '\.(c|h|cc)$' | grep -E -v '^./(third_party|cmake)' | xargs clang-format -i
- - name: Check for differences
- run: git diff --exit-code