Fix missing secrets in controller test #37
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
Matrix: clippy
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
|