From 4be9085d07501cf99b47e402405274d157f4b92f Mon Sep 17 00:00:00 2001 From: Daniel Wielanek Date: Thu, 17 Nov 2022 18:54:55 +0100 Subject: [PATCH] Test of workflow added. --- .github/workflows/check-format.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/check-format.yml diff --git a/.github/workflows/check-format.yml b/.github/workflows/check-format.yml new file mode 100644 index 00000000000..ba402b0aaef --- /dev/null +++ b/.github/workflows/check-format.yml @@ -0,0 +1,13 @@ +name: clang-format Check +on: [push, pull_request] +jobs: + formatting-check: + name: Formatting Check + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run clang-format style check for C/C++/Protobuf programs. + uses: jidicula/clang-format-action@v4.9.0 + with: + clang-format-version: '13' + check-path: '.'