Skip to content

Merge pull request #79 from Blobscan/fix/jwt-token-expiration #22

Merge pull request #79 from Blobscan/fix/jwt-token-expiration

Merge pull request #79 from Blobscan/fix/jwt-token-expiration #22

Triggered via push January 27, 2025 18:30
Status Success
Total duration 5m 24s
Artifacts
Build docker image
2m 34s
Build docker image
Deploy (staging)
20s
Deploy (staging)
Fit to window
Zoom out
Zoom in

Annotations

4 warnings
Run tests
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
you seem to be trying to use `match` for destructuring a single pattern. Consider using `if let`: src/slots_processor/helpers.rs#L17
warning: you seem to be trying to use `match` for destructuring a single pattern. Consider using `if let` --> src/slots_processor/helpers.rs:17:28 | 17 | .for_each(|tx| match &tx.blob_versioned_hashes { | ____________________________^ 18 | | Some(versioned_hashes) => { 19 | | tx_to_versioned_hashes.insert(tx.hash, versioned_hashes.clone()); 20 | | } 21 | | None => {} 22 | | }); | |_____________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_match = note: `#[warn(clippy::single_match)]` on by default help: try | 17 ~ .for_each(|tx| if let Some(versioned_hashes) = &tx.blob_versioned_hashes { 18 + tx_to_versioned_hashes.insert(tx.hash, versioned_hashes.clone()); 19 ~ }); |
Build docker image
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Deploy (staging)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636