We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 410dea1 commit bb1c11dCopy full SHA for bb1c11d
1 file changed
.github/workflows/static-analysis.yml
@@ -10,6 +10,15 @@ jobs:
10
- uses: DoozyX/clang-format-lint-action@v0.20
11
with:
12
source: '.'
13
+ cmake-format:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - name: Install cmakelang
18
+ run: |
19
+ python3 -m pip install cmakelang
20
+ - name: Check CMake formatting
21
+ run: cmake-format --check $(git ls-files '*.cmake' 'CMakeLists.txt')
22
python-lint:
23
runs-on: ubuntu-latest
24
steps:
0 commit comments