chore: checkpoint before lint autofix

This commit is contained in:
Sebastien L
2026-02-12 04:44:17 +00:00
parent 41c3056184
commit df225c120c
14 changed files with 795 additions and 14 deletions

32
.github/workflows/style-lint.yml vendored Normal file
View File

@@ -0,0 +1,32 @@
name: Style Lint
on:
push:
branches:
- "refactoring"
- "main"
- "master-cmake"
pull_request:
branches:
- "refactoring"
- "main"
- "master-cmake"
jobs:
clang-format:
name: clang-format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install clang-format
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends clang-format
- name: Check style
run: |
build-scripts/lint_style.sh check