chore: release master #25
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
Annotations
3 warnings
lint-test
Error while fetching latest Helm release: Error: [@octokit/auth-action] `GITHUB_TOKEN` variable is not set. It must be set on either `env:` or `with:`. See https://github.com/octokit/auth-action.js#createactionauth. Using default version v3.9.0
|
wildcard pattern covers any other pattern as it will match anyway:
tonlibjson-client/src/block.rs#L133
warning: wildcard pattern covers any other pattern as it will match anyway
--> tonlibjson-client/src/block.rs:133:13
|
133 | 1 | _ => BlockCriteria::Seqno { shard: self.id.shard, seqno: self.id.seqno }
| ^^^^^
|
= help: consider handling `_` separately
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_in_or_patterns
= note: `#[warn(clippy::wildcard_in_or_patterns)]` on by default
|
this expression creates a reference which is immediately dereferenced by the compiler:
tonlibjson-client/build.rs#L214
warning: this expression creates a reference which is immediately dereferenced by the compiler
--> tonlibjson-client/build.rs:214:35
|
214 | if skip_list.contains(&&type_ident) {
| ^^^^^^^^^^^^ help: change this to: `(&type_ident)`
|
= 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
|