Merge pull request #481 from ethereum/circleci-lint

circleci: run clang-format on everything
This commit is contained in:
Paweł Bylica 2019-12-06 17:42:28 +01:00 committed by GitHub
commit 31d633288a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ jobs:
name: "Check code format"
command: |
clang-format --version
find bindings/java examples include lib test -name '*.hpp' -o -name '*.cpp' -o -name '*.h' -o -name '*.c' | xargs clang-format -i
find bindings examples include lib test tools -name '*.hpp' -o -name '*.cpp' -o -name '*.h' -o -name '*.c' | xargs clang-format -i
git diff --color --exit-code
- run:
name: "Run codespell"