CI check --no-default-features works
This commit is contained in:
parent
0604609fdf
commit
368a7f2984
25
.github/workflows/rust.yml
vendored
25
.github/workflows/rust.yml
vendored
|
@ -29,17 +29,16 @@ jobs:
|
||||||
|
|
||||||
- name: Run Clippy
|
- name: Run Clippy
|
||||||
run: cargo clippy --all-targets --all-features
|
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: build all features
|
- name: no features -- test (without doctest)
|
||||||
run: cargo build --all-features --verbose
|
run: cargo test --all-targets --no-default-features
|
||||||
- name: build all features -- examples
|
|
||||||
run: cargo build --all-features --examples --verbose
|
- name: default features -- test
|
||||||
- name: test all features
|
run: cargo test --all
|
||||||
run: cargo test --all --all-features --verbose
|
- 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