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 e219ef1 commit 114e7d9Copy full SHA for 114e7d9
.github/workflows/e2e.yml
@@ -41,7 +41,7 @@ jobs:
41
run: |
42
git clone --depth=1 https://github.com/${{ github.event.inputs.target_repo || 'llvm/llvm-project' }}.git test-repo
43
44
- - name: Generate .pre-commit-config.yaml
+ - name: Create .pre-commit-config.yaml
45
46
cd test-repo
47
rm -f .pre-commit-config.yaml
@@ -61,7 +61,4 @@ jobs:
61
62
63
pre-commit install
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
+ pre-commit run --all-files || true
0 commit comments