We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67eb1d9 commit ba76b8bCopy full SHA for ba76b8b
1 file changed
.github/workflows/rust-next.yml
@@ -38,3 +38,22 @@ jobs:
38
run: cargo test --workspace --all-features
39
- name: No-default features
40
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