Skip to content

Commit 0835e26

Browse files
add clippy on build-test CI job
1 parent 590a01b commit 0835e26

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/cont_integration.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
CARGO_TERM_COLOR: always
1111

1212
jobs:
13-
build:
13+
build-test:
1414

1515
runs-on: ubuntu-latest
1616

@@ -31,3 +31,8 @@ jobs:
3131
- run: cargo check --verbose --no-default-features --features=blocking
3232
- run: cargo check --verbose --no-default-features --features=async
3333
- 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

Comments
 (0)