File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -19,14 +19,14 @@ jobs:
1919 - name : Build
2020 run : cargo build --verbose
2121
22- - name : Run tests (No Features )
22+ - name : Run tests (Standard )
2323 run : cargo test --verbose
2424
25- - name : Run tests (Encoding)
26- run : cargo test --verbose --features=encoding
25+ - name : Run tests (Encoding Only )
26+ run : cargo test --verbose --no-default-features -- features=encoding
2727
28- - name : Run tests (Decoding )
29- run : cargo test --verbose --features=decoding
28+ - name : Run tests (No Features )
29+ run : cargo test --verbose --no-default- features
3030
3131 - name : Run tests (All Features)
3232 run : cargo test --verbose --all-features
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ xxhash-rust = { version = "0.8.15", features = ["xxh3"] }
1919zstd = " 0.13.3"
2020
2121[features ]
22+ default = [" decoding" ]
2223encoding = [" dep:walkdir" ]
2324decoding = []
2425https = []
You can’t perform that action at this time.
0 commit comments