CI check --no-default-features works

This commit is contained in:
Vinzenz Schroeter 2025-02-17 21:15:30 +01:00
parent 0604609fdf
commit 368a7f2984

View file

@ -30,16 +30,15 @@ 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 - name: no features -- test (without doctest)
run: cargo build --all --verbose run: cargo test --all-targets --no-default-features
- name: build default features -- examples
run: cargo build --examples --verbose
- name: test default features
run: cargo test --all --verbose
- name: build all features - name: default features -- test
run: cargo build --all-features --verbose run: cargo test --all
- name: build all features -- examples - name: default features -- examples
run: cargo build --all-features --examples --verbose run: cargo build --examples
- name: test all features
run: cargo test --all --all-features --verbose - name: all features -- test
run: cargo test --all --all-features
- name: all features -- examples
run: cargo build --examples --all-features