ThirdPart: HevTaskSystem: Update to f6e345b. #51
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: "Check code formatting" | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
jobs: | |
checker: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Prepare | |
run: | | |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - | |
sudo add-apt-repository -y 'deb http://apt.llvm.org/noble/ llvm-toolchain-noble main' | |
sudo apt install -y clang-format | |
- name: Format | |
run: | | |
find src -iname "*.[h,c]" -exec clang-format -i {} \; | |
- name: Check | |
run: | | |
git status | |
git diff --quiet |