ci: Add github-action that automatically runs clang-format. Will not fail CI (#4387)

Signed-off-by: pasta <pasta@dashboost.org>
This commit is contained in:
PastaPastaPasta 2021-09-02 16:00:07 -04:00 committed by GitHub
parent 03d6db5eae
commit 20eb13616a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

17
.github/workflows/clang-diff-format.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Clang Diff Format Check
on:
pull_request:
branches:
- develop
jobs:
ClangFormat:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Fetch git
run: git fetch
- name: Run Clang-Format-Diff.py
run: git diff -U0 origin/develop | ./contrib/devtools/clang-format-diff.py -p1