Initial implementation #15
Annotations
2 errors and 3 warnings
matching on `Some` with `ok()` is redundant:
src/lib.rs#L414
error: matching on `Some` with `ok()` is redundant
--> src/lib.rs:414:5
|
414 | if let Some(name) = env::var("AXOUPDATER_APP_NAME").ok() {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#match_result_ok
= note: `-D clippy::match-result-ok` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::match_result_ok)]`
help: consider matching on `Ok(name)` and removing the call to `ok` instead
|
414 | if let Ok(name) = env::var("AXOUPDATER_APP_NAME") {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
clippy
Clippy had exited with the 101 exit code
|
fmt
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
clippy
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
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/
|