We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4118544 commit bd1002aCopy full SHA for bd1002a
.github/workflows/test.yml
@@ -19,5 +19,14 @@ jobs:
19
- name: Build
20
run: cargo build --verbose
21
22
- - name: Run tests
+ - name: Run tests (No Features)
23
run: cargo test --verbose
24
+
25
+ - name: Run tests (Encoding)
26
+ run: cargo test --verbose --features=encoding
27
28
+ - name: Run tests (Decoding)
29
+ run: cargo test --verbose --features=decoding
30
31
+ - name: Run tests (All Features)
32
+ run: cargo test --verbose --all-features
tests/basic.rs
@@ -1,6 +1,6 @@
1
use std::{fs, path::Path};
2
3
-#[cfg(feature = "encoding")]
+#[cfg(all(feature = "encoding", feature = "decoding"))]
4
#[test]
5
fn main() {
6
use std::path::absolute;
0 commit comments