Skip to content

add homepage

add homepage #73

Triggered via push May 9, 2024 02:35
Status Success
Total duration 46s
Artifacts

clippy.yaml

on: push
clippy_check
35s
clippy_check
Fit to window
Zoom out
Zoom in

Annotations

4 warnings
file opened with `create`, but `truncate` behavior not defined: crates/blockless-car/src/utils/unpack.rs#L131
warning: file opened with `create`, but `truncate` behavior not defined --> crates/blockless-car/src/utils/unpack.rs:131:22 | 131 | .create(true) | ^^^^^^^^^^^^- help: add: `.truncate(true)` | = help: if you intend to overwrite an existing file entirely, call `.truncate(true)` = help: if you instead know that you may want to keep some parts of the old file, call `.truncate(false)` = help: alternatively, use `.append(true)` to append to the file instead of overwriting it = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_open_options
file opened with `create`, but `truncate` behavior not defined: crates/blockless-car/src/utils/unpack.rs#L91
warning: file opened with `create`, but `truncate` behavior not defined --> crates/blockless-car/src/utils/unpack.rs:91:22 | 91 | .create(true) | ^^^^^^^^^^^^- help: add: `.truncate(true)` | = help: if you intend to overwrite an existing file entirely, call `.truncate(true)` = help: if you instead know that you may want to keep some parts of the old file, call `.truncate(false)` = help: alternatively, use `.append(true)` to append to the file instead of overwriting it = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_open_options = note: `#[warn(clippy::suspicious_open_options)]` on by default
clippy_check
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: 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/