We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fc31e9 commit 5322170Copy full SHA for 5322170
.github/workflows/style.yml
@@ -96,7 +96,7 @@ jobs:
96
97
- name: Check Clang warnings
98
run: |
99
- find runtime/libcn/ -iname '*.c' | xargs clang-19 -c -I runtime/libcn/include/ -Werror -Wall -o /dev/null
+ find runtime/libcn/ -iname '*.c' -exec clang-19 -c -I runtime/libcn/include/ -Werror -Wall -o /dev/null {} ';'
100
101
gcc-warnings:
102
name: GCC warnings
@@ -115,7 +115,7 @@ jobs:
115
116
- name: Check GCC warnings
117
118
- find runtime/libcn/ -iname '*.c' | xargs gcc -c -I runtime/libcn/include/ -Werror -Wall -o /dev/null
+ find runtime/libcn/ -iname '*.c' -exec gcc -c -I runtime/libcn/include/ -Werror -Wall -o /dev/null {} ';'
119
120
shellcheck:
121
name: ShellCheck
0 commit comments