diff --git a/.github/workflows/rust-next.yml b/.github/workflows/rust-next.yml index bb9629aa..a04e6b06 100644 --- a/.github/workflows/rust-next.yml +++ b/.github/workflows/rust-next.yml @@ -63,9 +63,21 @@ jobs: - uses: Swatinem/rust-cache@v2 - name: Update dependencues run: cargo update + - name: Build + run: cargo test --no-run --workspace --all-features - name: Default features - run: cargo test --workspace --all-targets - - name: All features - run: cargo test --workspace --all-targets --all-features - - name: No-default features - run: cargo test --workspace --all-targets --no-default-features + run: cargo test --workspace + - name: toml_edit (all features) + run: cargo test -p toml_edit --all-features + - name: toml_edit (no-default features) + run: cargo test -p toml_edit --no-default-features + - name: toml (preserve_order) + run: cargo test -p toml --features preserve_order + - name: toml (all features) + run: cargo test -p toml --all-features + - name: toml (parse-only) + run: cargo test -p toml --no-default-features --features parse + - name: toml (display-only) + run: cargo test -p toml --no-default-features --features display + - name: toml (no-default features) + run: cargo test -p toml --no-default-features