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 71184d0 commit 73d164dCopy full SHA for 73d164d
.github/workflows/comment-clippy-warnings.yaml
@@ -34,6 +34,9 @@ jobs:
34
run: |
35
# Run Clippy and filter output
36
CLIPPY_OUTPUT=$(cargo clippy --all-targets --all-features -- -W clippy::all 2>&1 | grep -vE "^(\s*Updating|\s*Download|\s*Compiling|\s*Checking|Finished)")
37
+ cd libraries/raw-rs
38
+ CLIPPY_OUTPUT+=$(cargo clippy --all-targets --all-features -- -W clippy::all 2>&1 | grep -vE "^(\s*Updating|\s*Download|\s*Compiling|\s*Checking|Finished)"
39
+
40
# Escape special characters for JSON
41
ESCAPED_OUTPUT=$(echo "$CLIPPY_OUTPUT" | jq -sR .)
42
echo "CLIPPY_OUTPUT=$ESCAPED_OUTPUT" >> $GITHUB_OUTPUT
0 commit comments