Skip to content
This repository was archived by the owner on Jul 6, 2026. It is now read-only.
Merged
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
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,15 @@ jobs:
run: cargo fmt --all -- --check

- name: Run Clippy
run: cargo clippy --all-targets --all-features
run: cargo clippy --workspace --exclude rusqlite_db --all-targets --all-features

- name: Run Clippy (rusqlite_db, wasm32-wasip1)
run: |
rustup target add wasm32-wasip1
cargo clippy -p rusqlite_db --target wasm32-wasip1 --all-targets --all-features

- name: Run Tests
run: cargo test -- --color always
run: cargo test --workspace --exclude rusqlite_db -- --color always
env:
RUST_BACKTRACE: 1

Expand Down
Loading
Loading