SWDEV-123456 - add clang auto-formatting (#255)

This commit is contained in:
Lytovchenko, Danylo
2025-06-05 14:57:01 +02:00
zatwierdzone przez GitHub
rodzic 814b1c81cf
commit b23ebe9a0e
3 zmienionych plików z 63 dodań i 0 usunięć
+22
Wyświetl plik
@@ -0,0 +1,22 @@
name: Clang format check
on:
push:
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install clang-format
run: |
sudo apt update && sudo apt install -y clang-format
- name: Run clang-format-check
id: clang-format
run: |
chmod +x .github/hooks/clang-format-check.sh
./.github/hooks/clang-format-check.sh --range "${{ github.event.before }}..${{ github.sha }}"