Skip to content

Commit ba76b8b

Browse files
committed
chore(ci): Ensure latest deps are good
1 parent 67eb1d9 commit ba76b8b

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/rust-next.yml

+19
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,22 @@ jobs:
3838
run: cargo test --workspace --all-features
3939
- name: No-default features
4040
run: cargo test --workspace --no-default-features
41+
latest:
42+
name: "Check latest dependencies"
43+
runs-on: ubuntu-latest
44+
steps:
45+
- name: Checkout repository
46+
uses: actions/checkout@v3
47+
- name: Install Rust
48+
uses: dtolnay/rust-toolchain@stable
49+
with:
50+
toolchain: stable
51+
- uses: Swatinem/rust-cache@v2
52+
- name: Update dependencues
53+
run: cargo update
54+
- name: Default features
55+
run: cargo test --workspace --all-targets
56+
- name: All features
57+
run: cargo test --workspace --all-targets --all-features
58+
- name: No-default features
59+
run: cargo test --workspace --all-targets --no-default-features

0 commit comments

Comments
 (0)