27 lines
623 B
YAML
27 lines
623 B
YAML
---
|
|
name: Validate C++ (Clang Format)
|
|
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
push:
|
|
paths:
|
|
- '**/*.h'
|
|
- '**/*.c'
|
|
- '**/*.cpp'
|
|
pull_request:
|
|
paths:
|
|
- '**/*.h'
|
|
- '**/*.c'
|
|
- '**/*.cpp'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
clang-format-checking:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@main
|
|
- uses: RafikFarhad/clang-format-github-action@v3
|
|
with:
|
|
sources: "components/nspanel_ha_blueprint/*.h,components/nspanel_ha_blueprint/*.cpp,components/nspanel_ha_blueprint_upload_tft/*.h,components/nspanel_ha_blueprint_upload_tft/*.cpp"
|
|
...
|