Skip to content

Commit 67f50d1

Browse files
committed
clean code
1 parent f61015c commit 67f50d1

5 files changed

Lines changed: 5 additions & 1252 deletions

File tree

.github/workflows/clang-format-check.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838
runs-on: [self-hosted, Linux, X64]
3939
strategy:
4040
matrix:
41-
path:
42-
- check: './' # path to include
43-
exclude: 'app/assets/images/' # path to exclude
41+
include:
42+
- check-path: './' # path to include
43+
exclude-path: 'app/assets/images/' # path to exclude
4444
#- check: 'src'
4545
# exclude: '(Fonts)' # Exclude file paths containing "Fonts"
4646
#- check: 'examples'
@@ -56,6 +56,6 @@ jobs:
5656
uses: jidicula/clang-format-action@v4.10.2 # Using include-regex 10.x or later
5757
with:
5858
clang-format-version: '13'
59-
check-path: ${{ matrix.path['check'] }}
60-
exclude-regex: ${{ matrix.path['exclude'] }}
59+
check-path: ${{ matrix.check-path }}
60+
exclude-regex: ${{ matrix.exclude-path }}
6161
include-regex: ${{ env.INCLUDE_REGEX }}

0 commit comments

Comments
 (0)