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 d9c8cb4 commit 06af23fCopy full SHA for 06af23f
1 file changed
.github/workflows/ci-pr.yml
@@ -224,19 +224,10 @@ jobs:
224
with:
225
components: clippy
226
227
- - name: Clean target for fresh build
228
- run: cargo clean
229
-
230
- name: Clippy Check
231
- run: |
232
- cargo clippy --workspace --all-targets -- -D warnings 2>&1 | tee clippy_output.txt
233
- exit_code=${PIPESTATUS[0]}
234
- if [ $exit_code -ne 0 ]; then
235
- echo "=== CLIPPY ERRORS ==="
236
- grep -E "^error" clippy_output.txt || true
237
- echo "=== END CLIPPY ERRORS ==="
238
- fi
239
- exit $exit_code
+ run: cargo clippy --workspace --all-targets -- -D warnings
+ env:
+ RUST_BACKTRACE: 1
240
241
# Quick Rust compilation check
242
rust-compile:
0 commit comments