Skip to content
Closed
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Check formatting
run: cargo fmt --all --check

# Lints.
# Lints every workspace crate with every feature (CLI `mcp`, `benchmarks`).
clippy:
name: Clippy
runs-on: ubuntu-latest
Expand All @@ -49,7 +49,7 @@ jobs:
components: clippy
- uses: Swatinem/rust-cache@v2
- name: Run clippy
run: cargo clippy --all-targets --features example-db -- -D warnings
run: cargo clippy --workspace --all-targets --all-features -- -D warnings

# Build and exercise the HiGHS-backed CLI natively on Apple Silicon.
macos-arm64:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ fmt-check:

# Run clippy
clippy:
cargo clippy --all-targets --features "$(TEST_FEATURES)" -- -D warnings
cargo clippy --workspace --all-targets --all-features -- -D warnings

node_modules/elkjs/package.json: package.json package-lock.json
npm ci
Expand Down
Loading