Skip to content

Bump DoozyX/clang-format-lint-action from 0.17 to 0.18 #186

Bump DoozyX/clang-format-lint-action from 0.17 to 0.18

Bump DoozyX/clang-format-lint-action from 0.17 to 0.18 #186

Workflow file for this run

name: CMake
on: [push, pull_request]
jobs:
cmake-format:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
- name: Install cmake-format
run: pip install cmake-format
- name: Run cmake-format
run: |
cmake-format -i ./CMakeLists.txt
cmake-format -i ./src/CMakeLists.txt
- name: Add & Commit
uses: EndBug/add-and-commit@v9
with:
signoff: true
message: 'Format cmake files'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}