Add CI check for clang-format
This commit is contained in:
parent
5cb8315383
commit
b00c4dce99
|
@ -31,6 +31,23 @@ jobs:
|
|||
- name: cppcheck
|
||||
run: cppcheck --std=c++17 src/
|
||||
|
||||
code-format:
|
||||
name: Code format check
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Install
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install clang-format
|
||||
|
||||
- name: Clone
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: clang-format
|
||||
run: find src -type f -exec clang-format -style=file --dry-run --Werror {} \;
|
||||
|
||||
android:
|
||||
name: Android
|
||||
|
||||
|
|
Loading…
Reference in New Issue