Skip to content

chore(main): release 0.36.0 #36

chore(main): release 0.36.0

chore(main): release 0.36.0 #36

Triggered via pull request February 26, 2024 16:41
Status Success
Total duration 11s
Artifacts

add-pr-to-project.yml

on: pull_request
Add pull request to project
3s
Add pull request to project
Fit to window
Zoom out
Zoom in

Annotations

3 warnings
Add pull request to project
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
writing `&Vec` instead of `&[_]` involves a new object where a slice will do: src/genes/cli/data.rs#L372
warning: writing `&Vec` instead of `&[_]` involves a new object where a slice will do --> src/genes/cli/data.rs:372:28 | 372 | fn serialize_vec<S>(x: &Vec<String>, s: S) -> Result<S::Ok, S::Error> | ^^^^^^^^^^^^ help: change this to: `&[String]` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ptr_arg = note: `#[warn(clippy::ptr_arg)]` on by default
this expression creates a reference which is immediately dereferenced by the compiler: src/db_utils/cli/copy.rs#L202
warning: this expression creates a reference which is immediately dereferenced by the compiler --> src/db_utils/cli/copy.rs:202:35 | 202 | if args.skip_cfs.contains(&cf_name) { | ^^^^^^^^ help: change this to: `cf_name` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow = note: `#[warn(clippy::needless_borrow)]` on by default