Skip to content
Snippets Groups Projects
Verified Commit c93a73cf authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

fix: issue related to unknown lints

parent a743ed9b
No related branches found
No related tags found
No related merge requests found
Pipeline #1867 failed
...@@ -27,7 +27,7 @@ jobs: ...@@ -27,7 +27,7 @@ jobs:
rustup component add clippy rustup component add clippy
- run: rustc --version - run: rustc --version
- run: cargo fmt --all -- --check - run: cargo fmt --all -- --check
- run: cargo clippy -- -D warnings - run: cargo clippy -- -D warnings -A unknown-lints
- run: cargo build - run: cargo build
- run: cargo build --release - run: cargo build --release
build-wasm: build-wasm:
...@@ -53,7 +53,7 @@ jobs: ...@@ -53,7 +53,7 @@ jobs:
rustup component add clippy rustup component add clippy
- run: rustc --version - run: rustc --version
- run: cargo fmt --all -- --check - run: cargo fmt --all -- --check
- run: cargo clippy -- -D warnings - run: cargo clippy -- -D warnings -A unknown-lints
- run: cargo install wasm-pack - run: cargo install wasm-pack
- run: wasm-pack build --release --target=web --out-dir=frontends/web/lib -- --features wasm - run: wasm-pack build --release --target=web --out-dir=frontends/web/lib -- --features wasm
- run: apt-get update && apt-get install -y -q nodejs npm - run: apt-get update && apt-get install -y -q nodejs npm
......
...@@ -34,7 +34,7 @@ build-rust: ...@@ -34,7 +34,7 @@ build-rust:
- rustup component add clippy - rustup component add clippy
- rustc --version - rustc --version
- cargo fmt --all -- --check - cargo fmt --all -- --check
- cargo clippy -- -D warnings - cargo clippy -- -D warnings -A unknown-lints
- cargo build - cargo build
- cargo build --release - cargo build --release
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment