CI check --no-default-features works
This commit is contained in:
parent
0604609fdf
commit
368a7f2984
23
.github/workflows/rust.yml
vendored
23
.github/workflows/rust.yml
vendored
|
@ -30,16 +30,15 @@ jobs:
|
|||
- name: Run Clippy
|
||||
run: cargo clippy --all-targets --all-features
|
||||
|
||||
- name: build default features
|
||||
run: cargo build --all --verbose
|
||||
- name: build default features -- examples
|
||||
run: cargo build --examples --verbose
|
||||
- name: test default features
|
||||
run: cargo test --all --verbose
|
||||
- name: no features -- test (without doctest)
|
||||
run: cargo test --all-targets --no-default-features
|
||||
|
||||
- name: build all features
|
||||
run: cargo build --all-features --verbose
|
||||
- name: build all features -- examples
|
||||
run: cargo build --all-features --examples --verbose
|
||||
- name: test all features
|
||||
run: cargo test --all --all-features --verbose
|
||||
- name: default features -- test
|
||||
run: cargo test --all
|
||||
- name: default features -- examples
|
||||
run: cargo build --examples
|
||||
|
||||
- name: all features -- test
|
||||
run: cargo test --all --all-features
|
||||
- name: all features -- examples
|
||||
run: cargo build --examples --all-features
|
||||
|
|
Loading…
Reference in a new issue