-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add checks for clang-format and cmake-format
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Linting | ||
on: pull_request | ||
jobs: | ||
clang-format: | ||
name: clang-format style | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Run clang-format style check for C/C++/Protobuf programs. | ||
uses: jidicula/[email protected] | ||
with: | ||
clang-format-version: 16 | ||
# Some files can be excluded from the clang-format style check, like 3rd party driver files, | ||
# as their licenses may not allow us to modify them, such as if they are LGPL licensed. | ||
# The exclude-regex option can be used to exclude these files from the style check: | ||
# exclude-regex: ^.*(test1\.h|test2\.h)$ | ||
cmake-format: | ||
name: cmake-format style | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.11 | ||
- name: Install lint tool | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install cmake-format pyyaml | ||
- name: Check cmake-lint | ||
run: find . -name CMakeLists.txt | xargs cmake-lint | ||
- name: Run cmake-format | ||
run: find . -name CMakeLists.txt | xargs cmake-format -i | ||
- name: Check cmake-format | ||
run: git diff --patch-with-stat --exit-code |