We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 590a01b commit 0835e26Copy full SHA for 0835e26
.github/workflows/cont_integration.yml
@@ -10,7 +10,7 @@ env:
10
CARGO_TERM_COLOR: always
11
12
jobs:
13
- build:
+ build-test:
14
15
runs-on: ubuntu-latest
16
@@ -31,3 +31,8 @@ jobs:
31
- run: cargo check --verbose --no-default-features --features=blocking
32
- run: cargo check --verbose --no-default-features --features=async
33
- run: cargo check --verbose --no-default-features --features=async-https
34
+ - name: Clippy
35
+ run: cargo clippy --all-targets --all-features -- -D warnings
36
+ - run: cargo clippy --all-targets --no-default-features --features=blocking -- -D warnings
37
+ - run: cargo clippy --all-targets --no-default-features --features=async -- -D warnings
38
+ - run: cargo clippy --all-targets --no-default-features --features=async-https -- -D warnings
0 commit comments