Skip to content

Commit 17cf291

Browse files
committed
Merge #14: Add clippy on build-test CI job
0835e26 add clippy on build-test CI job (Vladimir Fomene) Pull request description: ACKs for top commit: afilini: ACK 0835e26 Tree-SHA512: 1c3c25f08b91dcd4bd8880e51e9b2387d4ba48f40b7a781b001b5c9a8c34924d4570f86880bd509d081dcf33fede7ec31a56477a96f4e72ea8b79f94311bc77f
2 parents 590a01b + 0835e26 commit 17cf291

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)