Skip to content

Commit

Permalink
ci: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Dec 31, 2024
1 parent 4b26b9c commit 9b4a95d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- run: cargo +stable clippy --workspace --all-targets --all-features
- run: cargo clippy --workspace --all-targets --all-features
env:
RUSTFLAGS: -Dwarnings

Expand Down
1 change: 1 addition & 0 deletions src/nibbles.rs
Original file line number Diff line number Diff line change
Expand Up @@ -933,6 +933,7 @@ mod tests {

proptest::proptest! {
#[test]
#[cfg_attr(miri, ignore = "no proptest")]
fn pack_unpack_roundtrip(input in vec(any::<u8>(), 0..64)) {
let nibbles = Nibbles::unpack(&input);
prop_assert!(valid_nibbles(&nibbles));
Expand Down

0 comments on commit 9b4a95d

Please sign in to comment.