Skip to content

Commit e9f84f8

Browse files
committed
fixup
1 parent 1fa2e11 commit e9f84f8

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/format_check.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,25 @@ jobs:
3636
with:
3737
files_yaml: |
3838
core:
39-
- cores/arduino/**.{c,cpp,h,hpp}
39+
- cores/arduino/*.{c,cpp,h,hpp}
40+
- cores/arduino/**/*.{c,cpp,h,hpp}
4041
- '!cores/arduino/api/**'
4142
loader:
42-
- loader/**.{c,cpp,h,hpp}
43+
- loader/*.{c,cpp,h,hpp}
44+
- loader/**/*.{c,cpp,h,hpp}
4345
- '!loader/llext_exports.c'
4446
libraries:
45-
- libraries/**.{c,cpp,h,hpp}
47+
- libraries/**/*.{c,cpp,h,hpp}
4648
- '!libraries/examples/**'
4749
- '!libraries/extras/**'
4850
- '!libraries/ea_malloc/**'
51+
- name: Debug changed files
52+
if: ${{ github.event.inputs.logLevel == 'debug' }}
53+
run: |
54+
echo "Any changed: ${{ steps.changed-files.outputs.any_changed }}"
55+
echo "Core changed: ${{ steps.changed-files.outputs.core_any_changed }}"
56+
echo "Loader changed: ${{ steps.changed-files.outputs.loader_any_changed }}"
57+
echo "Libraries changed: ${{ steps.changed-files.outputs.libraries_any_changed }}"
4958
5059
format-check:
5160
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)