32 lines
671 B
YAML
32 lines
671 B
YAML
name: "Lint CMake"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
lint-cmake:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Python venv
|
|
uses: ./.github/actions/init-python
|
|
with:
|
|
cache-key: "lint-cmake"
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
source .venv/bin/activate
|
|
pip install pyyaml cmake_format
|
|
|
|
- name: Linting with CMake formatter
|
|
id: lint-cmake
|
|
uses: ./.github/actions/lint-error
|
|
with:
|
|
format-command: ./scripts/lint_cmake.py -f
|
|
format-tool: "cmake-format"
|