30 lines
710 B
YAML
30 lines
710 B
YAML
name: Clang Format Diff
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
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
|