We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 843fb37 commit d9939beCopy full SHA for d9939be
.github/workflows/e2e.yml
@@ -61,4 +61,7 @@ jobs:
61
run: |
62
cd test-repo
63
pre-commit install
64
- pre-commit run --all-files --show-diff-on-failure --verbose
+ # Run clang-format in smaller chunks
65
+ for dir in $(find . -type d -name '*'); do
66
+ pre-commit run --files $(find "$dir" -name '*.cpp' -o -name '*.h' | head -n 1000)
67
+ done
0 commit comments