Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,12 @@ jobs:
if: runner.os == 'Windows'
run: cargo clippy --verbose --target x86_64-pc-windows-gnu -- -D warnings

- name: Miri Check
if: runner.os == 'Linux' && !inputs.release-build
run: |
rustup component add miri
cargo miri test --verbose --workspace --exclude inference-wasm-codegen --exclude inference --exclude inference-cli --exclude infs --exclude inference-lsp --exclude inference-ide --exclude inference-ide-db
Copy link

Copilot AI Jan 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The long list of --exclude flags makes this command hard to read and maintain. Consider using a multi-line format with line continuation (backslash) to improve readability, with one exclusion per line.

Suggested change
cargo miri test --verbose --workspace --exclude inference-wasm-codegen --exclude inference --exclude inference-cli --exclude infs --exclude inference-lsp --exclude inference-ide --exclude inference-ide-db
cargo miri test --verbose --workspace \
--exclude inference-wasm-codegen \
--exclude inference \
--exclude inference-cli \
--exclude infs \
--exclude inference-lsp \
--exclude inference-ide \
--exclude inference-ide-db

Copilot uses AI. Check for mistakes.

- name: Install Cargo audit
run: cargo install cargo-audit

Expand Down