Skip to content

Commit d9939be

Browse files
authored
Update e2e.yml
1 parent 843fb37 commit d9939be

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/e2e.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,7 @@ jobs:
6161
run: |
6262
cd test-repo
6363
pre-commit install
64-
pre-commit run --all-files --show-diff-on-failure --verbose
64+
# 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

Comments
 (0)