let's check the format via some github action

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
This commit is contained in:
Matthieu Gallien 2022-09-30 16:43:23 +02:00 committed by Matthieu Gallien
parent 3796e03492
commit 27485e2e66
1 changed files with 15 additions and 0 deletions

15
.github/workflows/clang-format.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: Clang Format Checker
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: DoozyX/clang-format-lint-action@v0.14
with:
source: '.'
extensions: 'h,cpp,c'
clangFormatVersion: 14