Skip to content

Fix missing secrets in controller test #37

Fix missing secrets in controller test

Fix missing secrets in controller test #37

Triggered via push December 10, 2023 17:20
Status Failure
Total duration 2m 33s
Artifacts
This run and associated checks have been archived and are scheduled for deletion. Learn more about checks retention

always.yml

on: push
ubuntu / stable / fmt
13s
ubuntu / stable / fmt
Matrix: clippy
Fit to window
Zoom out
Zoom in

Annotations

5 errors and 1 warning
ubuntu / stable / fmt
Process completed with exit code 1.
cannot find struct, variant or union type `LineColumn` in crate `proc_macro`: home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.56/src/wrapper.rs#L475
error[E0422]: cannot find struct, variant or union type `LineColumn` in crate `proc_macro` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.56/src/wrapper.rs:475:33 | 475 | let proc_macro::LineColumn { line, column } = s.start(); | ^^^^^^^^^^ not found in `proc_macro` | help: consider importing this struct through its public re-export | 1 + use crate::LineColumn; | help: if you import `LineColumn`, refer to it directly | 475 - let proc_macro::LineColumn { line, column } = s.start(); 475 + let LineColumn { line, column } = s.start(); |
cannot find struct, variant or union type `LineColumn` in crate `proc_macro`: home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.56/src/wrapper.rs#L489
error[E0422]: cannot find struct, variant or union type `LineColumn` in crate `proc_macro` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.56/src/wrapper.rs:489:33 | 489 | let proc_macro::LineColumn { line, column } = s.end(); | ^^^^^^^^^^ not found in `proc_macro` | help: consider importing this struct through its public re-export | 1 + use crate::LineColumn; | help: if you import `LineColumn`, refer to it directly | 489 - let proc_macro::LineColumn { line, column } = s.end(); 489 + let LineColumn { line, column } = s.end(); |
unknown feature `proc_macro_span_shrink`: home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.56/src/lib.rs#L92
error[E0635]: unknown feature `proc_macro_span_shrink` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.56/src/lib.rs:92:30 | 92 | feature(proc_macro_span, proc_macro_span_shrink) | ^^^^^^^^^^^^^^^^^^^^^^
ubuntu / nightly / clippy
Clippy had exited with the 101 exit code
unused import: `reputation::PRECISION_FACTOR`: backend/src/gate.rs#L10
warning: unused import: `reputation::PRECISION_FACTOR` --> backend/src/gate.rs:10:9 | 10 | pub use reputation::PRECISION_FACTOR; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default