File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -26,13 +26,13 @@ jobs:
26
26
run : cargo fmt -- --check --verbose
27
27
- name : Build
28
28
run : cargo build --verbose --all-features
29
- - name : Test
30
- run : cargo test --verbose --all-features
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
29
+ - name : Test all features
30
+ run : cargo test --verbose --all-features -- --test-threads=1
31
+ - name : Check only blocking feature
32
+ run : cargo check --verbose --no-default-features --features=blocking
33
+ - name : Check only async features
34
+ run : cargo check --verbose --no-default-features --features=async
35
+ - name : Check only async-http feature
36
+ run : cargo check --verbose --no-default-features --features=async-https
34
37
- name : Clippy
35
38
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
You can’t perform that action at this time.
0 commit comments