mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-06 09:44:21 +01:00
change clippy in CI to allow unused variables
This commit is contained in:
6
.github/workflows/rust.yml
vendored
6
.github/workflows/rust.yml
vendored
@@ -50,13 +50,13 @@ jobs:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Clippy
|
||||
run: |
|
||||
cargo clippy --workspace --all-features --all-targets --exclude limbo-wasm -- --deny=warnings
|
||||
cargo clippy --workspace --all-features --all-targets --exclude limbo-wasm -- -A unused-variables --deny=warnings
|
||||
- name: Clippy `limbo-wasm` crate `nodejs` feature
|
||||
run: |
|
||||
cargo clippy --package limbo-wasm --features nodejs --all-targets --no-deps -- -A clippy::all -W clippy::correctness -W clippy::perf -W clippy::suspicious --deny=warnings
|
||||
cargo clippy --package limbo-wasm --features nodejs --all-targets --no-deps -- -A clippy::all -A unused-variables -W clippy::correctness -W clippy::perf -W clippy::suspicious --deny=warnings
|
||||
- name: Clippy `limbo-wasm` crate `web` feature
|
||||
run: |
|
||||
cargo clippy --package limbo-wasm --no-default-features --features web --all-targets --no-deps -- -A clippy::all -W clippy::correctness -W clippy::perf -W clippy::suspicious --deny=warnings
|
||||
cargo clippy --package limbo-wasm --no-default-features --features web --all-targets --no-deps -- -A clippy::all -A unused-variables -W clippy::correctness -W clippy::perf -W clippy::suspicious --deny=warnings
|
||||
|
||||
build-wasm:
|
||||
runs-on: blacksmith-4vcpu-ubuntu-2404
|
||||
|
||||
Reference in New Issue
Block a user