Skip to content

Commit cdc86a6

Browse files
committed
ci: use --all-targets for 'check' invocations
1 parent 6e0cd01 commit cdc86a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ jobs:
3333
uses: actions-rs/cargo@v1
3434
with:
3535
command: check
36-
args: --workspace --benches --bins --examples --tests --features hyperium_http
36+
args: --workspace --all-targets --features hyperium_http
3737

3838
- name: check unstable
3939
uses: actions-rs/cargo@v1
4040
with:
4141
command: check
42-
args: --workspace --benches --bins --examples --tests --features "hyperium_http,unstable"
42+
args: --workspace --all-targets --features "hyperium_http,unstable"
4343

4444
- name: tests
4545
uses: actions-rs/cargo@v1
@@ -54,7 +54,7 @@ jobs:
5454
- uses: actions/checkout@master
5555

5656
- name: clippy
57-
run: cargo clippy --workspace --benches --bins --examples --tests --features "hyperium_http,unstable" -- -D warnings
57+
run: cargo clippy --workspace --all-targets --features "hyperium_http,unstable" -- -D warnings
5858

5959
- name: fmt
6060
run: cargo fmt --all -- --check

0 commit comments

Comments
 (0)