Add CI check for clang-format

This commit is contained in:
Vasilii Rogin 2023-04-24 17:03:12 +03:00
parent 5cb8315383
commit b00c4dce99
1 changed files with 17 additions and 0 deletions

View File

@ -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