Skip to content

Merge pull request #69 from mfrischknecht/fix-build-rust-1-75 #204

Merge pull request #69 from mfrischknecht/fix-build-rust-1-75

Merge pull request #69 from mfrischknecht/fix-build-rust-1-75 #204

Triggered via push January 21, 2024 07:36
Status Failure
Total duration 44s
Artifacts

ci.yml

on: push
Matrix: build / build
Waiting for pending jobs
Fit to window
Zoom out
Zoom in

Annotations

3 errors and 1 warning
accessing first element with `face .families.get(0)`: src/loader/face_info.rs#L78
error: accessing first element with `face .families.get(0)` --> src/loader/face_info.rs:78:22 | 78 | let family = face | ______________________^ 79 | | .families 80 | | .get(0) | |___________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#get_first note: the lint level is defined here --> src/main.rs:19:9 | 19 | #![deny(clippy::all)] | ^^^^^^^^^^^ = note: `#[deny(clippy::get_first)]` implied by `#[deny(clippy::all)]` help: try | 78 ~ let family = face 79 + .families.first() |
accessing first element with `face .families.get(0)`: src/loader/face_info.rs#L78
error: accessing first element with `face .families.get(0)` --> src/loader/face_info.rs:78:22 | 78 | let family = face | ______________________^ 79 | | .families 80 | | .get(0) | |___________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#get_first note: the lint level is defined here --> src/main.rs:19:9 | 19 | #![deny(clippy::all)] | ^^^^^^^^^^^ = note: `#[deny(clippy::get_first)]` implied by `#[deny(clippy::all)]` help: try | 78 ~ let family = face 79 + .families.first() |
style
Clippy had exited with the 101 exit code
style
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/cargo@v1, 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/