Skip to content

Commit

Permalink
Fixes syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
GOB52 committed Oct 16, 2024
1 parent 8862df8 commit de333a8
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/clang-format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,18 @@ on:
- '**.c'
- '**.inl'
- '**clang-format-check.yml'
pull_request:
- '**.clang-format'
pull_request:
paths:
- '**.ino'
- '**.cpp'
- '**.hpp'
- '**.h'
- '**.c'
- '**.inl'
- '**clang-format-check.yml'
- '**.clang-format'
workflow_dispatch:

jobs:
formatting-check:
Expand All @@ -29,12 +33,12 @@ jobs:
strategy:
matrix:
path:
#- check: './' # path to include
# exclude: '' # path to exclude
- check: 'src'
exclude: ''
- check: 'test'
- check: 'examples'
# exclude: '(Fonts)' # Exclude file paths containing "Fonts"
exclude: ''
- check: 'examples/Basic'
exclude: ''

steps:
- name: Checkout
Expand All @@ -49,3 +53,4 @@ jobs:
check-path: ${{ matrix.path['check'] }}
exclude-regex: ${{ matrix.path['exclude'] }}
include-regex: ${{ env.INCLUDE_REGEX }}

0 comments on commit de333a8

Please sign in to comment.