diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index fbf93a9..d1f62c4 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -29,17 +29,16 @@ 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: 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: no features -- test (without doctest) + run: cargo test --lib --no-default-features + + - 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