From 2c0e05ddadcea5c4ec16da134b1d833fe9ea083f Mon Sep 17 00:00:00 2001 From: GOB Date: Wed, 16 Oct 2024 22:56:16 +0900 Subject: [PATCH] Fixes syntax error --- .github/workflows/clang-format-check.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/clang-format-check.yml b/.github/workflows/clang-format-check.yml index 639cd24..6add079 100644 --- a/.github/workflows/clang-format-check.yml +++ b/.github/workflows/clang-format-check.yml @@ -13,7 +13,9 @@ on: - '**.c' - '**.inl' - '**clang-format-check.yml' - pull_request: + - '**.clang-format' + pull_request: + paths: - '**.ino' - '**.cpp' - '**.hpp' @@ -21,6 +23,8 @@ on: - '**.c' - '**.inl' - '**clang-format-check.yml' + - '**.clang-format' + workflow_dispatch: jobs: formatting-check: @@ -29,12 +33,12 @@ jobs: strategy: matrix: path: - #- check: './' # path to include - # exclude: '' # path to exclude - check: 'src' + exclude: '' - check: 'test' + exclude: '' - check: 'examples' - # exclude: '(Fonts)' # Exclude file paths containing "Fonts" + exclude: '' steps: - name: Checkout