Skip to content

Commit

Permalink
chore(ci): Ensure latest deps are good
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Aug 11, 2023
1 parent 67eb1d9 commit ba76b8b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/rust-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,22 @@ jobs:
run: cargo test --workspace --all-features
- name: No-default features
run: cargo test --workspace --no-default-features
latest:
name: "Check latest dependencies"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
- name: Update dependencues
run: cargo update
- 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

0 comments on commit ba76b8b

Please sign in to comment.