We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2645856 commit fd69610Copy full SHA for fd69610
.github/workflows/ci.yml
@@ -10,6 +10,8 @@ jobs:
10
fetch-depth: 0
11
fetch-tags: true
12
submodules: recursive
13
+ - name: Run ShellCheck
14
+ uses: ludeeus/action-shellcheck@v4
15
- name: Verify submodules
16
run: git submodule status --recursive
17
- name: Set up Zig
tools/fmt-check.sh
@@ -2,4 +2,4 @@
2
set -e
3
zig fmt --check .
4
C_FILES=$(find ./src -type f -name '*.c' ! -name 'lv_font*')
5
-clang-format -style=file -dry-run -Werror $C_FILES
+clang-format -style=file -dry-run -Werror "$C_FILES"
0 commit comments