Skip to content

Commit fd69610

Browse files
committed
CI: Add ShellCheck for shell scripts
1 parent 2645856 commit fd69610

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ jobs:
1010
fetch-depth: 0
1111
fetch-tags: true
1212
submodules: recursive
13+
- name: Run ShellCheck
14+
uses: ludeeus/action-shellcheck@v4
1315
- name: Verify submodules
1416
run: git submodule status --recursive
1517
- name: Set up Zig

tools/fmt-check.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
set -e
33
zig fmt --check .
44
C_FILES=$(find ./src -type f -name '*.c' ! -name 'lv_font*')
5-
clang-format -style=file -dry-run -Werror $C_FILES
5+
clang-format -style=file -dry-run -Werror "$C_FILES"

0 commit comments

Comments
 (0)