We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fa2e11 commit d6e44b1Copy full SHA for d6e44b1
.github/workflows/format_check.yml
@@ -36,16 +36,24 @@ jobs:
36
with:
37
files_yaml: |
38
core:
39
- - cores/arduino/**.{c,cpp,h,hpp}
+ - cores/arduino/*.{c,cpp,h,hpp}
40
+ - cores/arduino/**/*.{c,cpp,h,hpp}
41
- '!cores/arduino/api/**'
42
loader:
- - loader/**.{c,cpp,h,hpp}
43
+ - loader/*.{c,cpp,h,hpp}
44
+ - loader/**/*.{c,cpp,h,hpp}
45
- '!loader/llext_exports.c'
46
libraries:
- - libraries/**.{c,cpp,h,hpp}
47
+ - libraries/**/*.{c,cpp,h,hpp}
48
- '!libraries/examples/**'
49
- '!libraries/extras/**'
50
- '!libraries/ea_malloc/**'
51
+ - name: Debug changed files
52
+ run: |
53
+ echo "Any changed: ${{ steps.changed-files.outputs.any_changed }}"
54
+ echo "Core changed: ${{ steps.changed-files.outputs.core_any_changed }}"
55
+ echo "Loader changed: ${{ steps.changed-files.outputs.loader_any_changed }}"
56
+ echo "Libraries changed: ${{ steps.changed-files.outputs.libraries_any_changed }}"
57
58
format-check:
59
runs-on: ubuntu-latest
0 commit comments