[krabby] add bazel config of sdl2 #247
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Clang Format Diff | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install LLVM16 | |
run: | | |
wget https://apt.llvm.org/llvm.sh | |
chmod +x llvm.sh | |
sudo ./llvm.sh 16 | |
- name: Install clang-format | |
run: | | |
sudo apt-get install -y clang-format-16 | |
- name: check-diff | |
run: | | |
diff=`git-clang-format-16 --binary=/usr/bin/clang-format-16 --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 |