From 538a2d9264f1ddd5209603dbaed9b39db9999d45 Mon Sep 17 00:00:00 2001 From: Hoorad <95998030+proh14@users.noreply.github.com> Date: Sat, 12 Oct 2024 19:24:16 +1300 Subject: [PATCH] Create formatter.yml --- .github/workflows/formatter.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/formatter.yml diff --git a/.github/workflows/formatter.yml b/.github/workflows/formatter.yml new file mode 100644 index 0000000..a0f6e5c --- /dev/null +++ b/.github/workflows/formatter.yml @@ -0,0 +1,11 @@ +on: push +name: clang-format Code Formatter +jobs: + lint: + name: clang-format Code Formatter + runs-on: ubuntu-latest + steps: + - name: Clang Code Formatter + uses: antoinealb/clang-format-action@clang9 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}