We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c12fb48 commit 59413ffCopy full SHA for 59413ff
1 file changed
.github/workflows/validate-coding-standards.yml
@@ -89,15 +89,15 @@ jobs:
89
90
- name: Validate CodeQL Format (CPP)
91
run: |
92
- find cpp -name \*.ql -or -name \*.qll -print0 | xargs -0 --max-procs "$XARGS_MAX_PROCS" codeql query format --in-place
+ find cpp \( -name \*.ql -or -name \*.qll \) -print0 | xargs -0 --max-procs "$XARGS_MAX_PROCS" codeql query format --in-place
93
94
git diff
95
git diff --compact-summary
96
git diff --quiet
97
98
- name: Validate CodeQL Format (C)
99
100
- find c -name \*.ql -or -name \*.qll -print0 | xargs -0 --max-procs "$XARGS_MAX_PROCS" codeql query format --in-place
+ find c \( -name \*.ql -or -name \*.qll \) -print0 | xargs -0 --max-procs "$XARGS_MAX_PROCS" codeql query format --in-place
101
102
103
0 commit comments