Skip to content

style: update formatting in release-plz.toml #5

style: update formatting in release-plz.toml

style: update formatting in release-plz.toml #5

Triggered via push August 3, 2024 04:37
Status Failure
Total duration
Artifacts

This workflow graph cannot be shown

A graph will be generated the next time this workflow is run.

Annotations

1 error and 8 warnings
Error
No event triggers defined in `on`
very complex type used. Consider factoring parts into `type` definitions: py-deepbiop/src/python_module.rs#L210
warning: very complex type used. Consider factoring parts into `type` definitions --> py-deepbiop/src/python_module.rs:210:6 | 210 | ) -> Result<( | ______^ 211 | | Bound<'_, PyArray3<Element>>, 212 | | Bound<'_, PyArray3<Element>>, 213 | | Bound<'_, PyArray2<Element>>, 214 | | HashMap<String, Element>, 215 | | )> { | |__^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity
very complex type used. Consider factoring parts into `type` definitions: py-deepbiop/src/python_module.rs#L164
warning: very complex type used. Consider factoring parts into `type` definitions --> py-deepbiop/src/python_module.rs:164:6 | 164 | ) -> Result<( | ______^ 165 | | Bound<'_, PyArray3<Element>>, 166 | | Bound<'_, PyArray3<Element>>, 167 | | Bound<'_, PyArray2<Element>>, 168 | | HashMap<String, Element>, 169 | | )> { | |__^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity = note: `#[warn(clippy::type_complexity)]` on by default
function `get_label_region` is never used: py-deepbiop/src/python_module.rs#L357
warning: function `get_label_region` is never used --> py-deepbiop/src/python_module.rs:357:8 | 357 | pub fn get_label_region(labels: &[i8]) -> Vec<Range<usize>> { | ^^^^^^^^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default
unused imports: `debug`, `error`, and `info`: py-deepbiop/src/python_module.rs#L13
warning: unused imports: `debug`, `error`, and `info` --> py-deepbiop/src/python_module.rs:13:11 | 13 | use log::{debug, error, info, warn}; | ^^^^^ ^^^^^ ^^^^ | = note: `#[warn(unused_imports)]` on by default
very complex type used. Consider factoring parts into `type` definitions: crates/deepbiop-fq/src/kmer.rs#L143
warning: very complex type used. Consider factoring parts into `type` definitions --> crates/deepbiop-fq/src/kmer.rs:143:6 | 143 | ) -> Result<Vec<(&[u8], (usize, usize))>> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity = note: `#[warn(clippy::type_complexity)]` on by default
a `Vec` of `Range` that is only one element: crates/deepbiop-fq/src/encode/triat.rs#L58
warning: a `Vec` of `Range` that is only one element --> crates/deepbiop-fq/src/encode/triat.rs:58:16 | 58 | Ok(vec![0..0]) | ^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_range_in_vec_init help: if you wanted a `Vec` that contains the entire range, try | 58 | Ok((0..0).collect::<std::vec::Vec<usize>>()) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ help: if you wanted a `Vec` of len 0, try | 58 | Ok(vec![0; 0]) | ~~~~
a `Vec` of `Range` that is only one element: crates/deepbiop-fq/src/encode/triat.rs#L36
warning: a `Vec` of `Range` that is only one element --> crates/deepbiop-fq/src/encode/triat.rs:36:23 | 36 | return Ok(vec![0..0]); | ^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_range_in_vec_init = note: `#[warn(clippy::single_range_in_vec_init)]` on by default help: if you wanted a `Vec` that contains the entire range, try | 36 | return Ok((0..0).collect::<std::vec::Vec<usize>>()); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ help: if you wanted a `Vec` of len 0, try | 36 | return Ok(vec![0; 0]); | ~~~~
missing documentation for the crate: deepbiop/src/lib.rs#L1
warning: missing documentation for the crate --> deepbiop/src/lib.rs:1:1 | 1 | / #![warn(missing_docs)] 2 | | 3 | | #[cfg(feature = "fastq")] 4 | | #[doc(inline)] 5 | | pub use deepbiop_fq as fastq; | |_____________________________^ | note: the lint level is defined here --> deepbiop/src/lib.rs:1:9 | 1 | #![warn(missing_docs)] | ^^^^^^^^^^^^