Skip to content

Merge pull request #142 from zhengjian526/master #73

Merge pull request #142 from zhengjian526/master

Merge pull request #142 from zhengjian526/master #73

Workflow file for this run

name: Clang Format Diff
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: install clang-format
run: sudo apt install clang-format
- name: check-diff
run: |
diff=`git-clang-format --diff HEAD^`
if ! [[ "$diff" = "no modified files to format" || "$diff" = "clang-format did not modify any files" ]]; then
echo "The diff you sent is not formatted correctly."
echo "The suggested format is"
echo "$diff"
exit 1
fi