ci: clippy check without default features
parent
910a45b3d5
commit
28ddb9b70b
|
@ -54,6 +54,13 @@ jobs:
|
||||||
command: clippy
|
command: clippy
|
||||||
args: --all-targets -- -D warnings
|
args: --all-targets -- -D warnings
|
||||||
|
|
||||||
|
- name: Clippy without default features
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: clippy
|
||||||
|
# TODO: add `--all-targets` once all warnings in examples are resolved
|
||||||
|
args: --no-default-features --features native-tls -- -D warnings
|
||||||
|
|
||||||
check-wasm:
|
check-wasm:
|
||||||
name: Check if WASM support compiles
|
name: Check if WASM support compiles
|
||||||
needs: [clippy]
|
needs: [clippy]
|
||||||
|
|
Loading…
Reference in New Issue