From: Matthieu Gallien Date: Fri, 30 Sep 2022 14:43:23 +0000 (+0200) Subject: let's check the format via some github action X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~11^2~223^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=27485e2e66f81098ff8e5d9f8c8e87c8697a885d;p=nextcloud-desktop.git let's check the format via some github action Signed-off-by: Matthieu Gallien --- diff --git a/.github/workflows/clang-format.yml b/.github/workflows/clang-format.yml new file mode 100644 index 000000000..0547ee643 --- /dev/null +++ b/.github/workflows/clang-format.yml @@ -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