We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3551d5e commit cb71440Copy full SHA for cb71440
1 file changed
.github/workflows/rust.yml
@@ -21,7 +21,9 @@ jobs:
21
with:
22
toolchain: stable
23
override: true
24
- - name: Build
+ - name: Build with default features
25
run: cargo build --examples --workspace --verbose
26
+ - name: Build again with all features
27
+ run: cargo build --examples --workspace --all-features --verbose
28
- name: Run tests
- run: cargo test --examples --workspace --verbose
29
+ run: cargo test --examples --workspace --all-features --verbose
0 commit comments