Bootstrap Gizmos plugin #157
Workflow file for this run
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: 🧼 Formatting Check | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
fetch-depth: 2 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install clang-format | |
- name: Check | |
run: | | |
for file in $(git diff -U0 --name-only --diff-filter=ACMR HEAD^ | grep -E '.*\.(c|cpp|h|hpp)$'); do | |
clang-format --dry-run -Werror $file || exit 1 | |
done |