@@ -36,16 +36,25 @@ jobs:
36
36
with :
37
37
files_yaml : |
38
38
core:
39
- - cores/arduino/**.{c,cpp,h,hpp}
39
+ - cores/arduino/*.{c,cpp,h,hpp}
40
+ - cores/arduino/**/*.{c,cpp,h,hpp}
40
41
- '!cores/arduino/api/**'
41
42
loader:
42
- - loader/**.{c,cpp,h,hpp}
43
+ - loader/*.{c,cpp,h,hpp}
44
+ - loader/**/*.{c,cpp,h,hpp}
43
45
- '!loader/llext_exports.c'
44
46
libraries:
45
- - libraries/**.{c,cpp,h,hpp}
47
+ - libraries/**/* .{c,cpp,h,hpp}
46
48
- '!libraries/examples/**'
47
49
- '!libraries/extras/**'
48
50
- '!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 }}"
49
58
50
59
format-check :
51
60
runs-on : ubuntu-latest
0 commit comments