Merge branch 'main' into split-cli-bin-lib #76
Annotations
2 errors and 3 warnings
you should consider adding a `Default` implementation for `GoodError`:
crates/cli/src/error.rs#L10
error: you should consider adding a `Default` implementation for `GoodError`
--> crates/cli/src/error.rs:10:5
|
10 | / pub fn new() -> GoodError {
11 | | GoodError { message: None }
12 | | }
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default
= note: `-D clippy::new-without-default` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::new_without_default)]`
help: try adding this
|
9 + impl Default for GoodError {
10 + fn default() -> Self {
11 + Self::new()
12 + }
13 + }
|
|
clippy_check
Clippy had exited with the 101 exit code
|
clippy_check
This job failure may be caused by using an out of date self-hosted runner. You are currently using runner version 2.313.0. Please update to the latest version 2.314.1
|
clippy_check
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
clippy_check
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|