Skip to content

Commit

Permalink
chore(ci): Fix latest-deps CI job
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Sep 19, 2023
1 parent 682fce4 commit 0e3de9a
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions .github/workflows/rust-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 0e3de9a

Please sign in to comment.