From ee44c485121ea4dc4bfae5f7d5201973139e7241 Mon Sep 17 00:00:00 2001 From: Isaac Marovitz Date: Thu, 6 Jul 2023 21:36:13 +0100 Subject: [PATCH] Formatting check --- .github/workflows/format.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/format.yml diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml new file mode 100644 index 000000000..d5bff766a --- /dev/null +++ b/.github/workflows/format.yml @@ -0,0 +1,14 @@ +name: Formatting check +on: + push: + pull_request: + workflow_dispatch: +jobs: + formatting-check: + name: Formatting Check + runs-on: ubuntu-latest + steps: + - name: Check out repo + uses: actions/checkout@v3 + - name: Run clang-format + uses: jidicula/clang-format-action@4.11.0 \ No newline at end of file