Skip to content

Make checker trace more JSON-ish (#911) #937

Make checker trace more JSON-ish (#911)

Make checker trace more JSON-ish (#911) #937

Triggered via push November 27, 2024 18:27
Status Success
Total duration 3m 26s
Artifacts

gh-pages.yml

on: push
Build and Deploy Website
3m 14s
Build and Deploy Website
Fit to window
Zoom out
Zoom in

Annotations

3 warnings
the following explicit lifetimes could be elided: 'a: crates/flux-refineck/src/type_env.rs#L891
warning: the following explicit lifetimes could be elided: 'a --> crates/flux-refineck/src/type_env.rs:891:16 | 891 | pub fn new<'a>(env: &TypeEnv<'a>) -> Self { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `#[warn(clippy::needless_lifetimes)]` on by default help: elide the lifetimes | 891 - pub fn new<'a>(env: &TypeEnv<'a>) -> Self { 891 + pub fn new(env: &TypeEnv<'_>) -> Self { |
consider adding a `;` to the last statement for consistent formatting: crates/flux-infer/src/refine_tree.rs#L807
warning: consider adding a `;` to the last statement for consistent formatting --> crates/flux-infer/src/refine_tree.rs:807:21 | 807 | exprs.push(format!("{e:?}")) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add a `;` here: `exprs.push(format!("{e:?}"));` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#semicolon_if_nothing_returned = note: requested on the command line with `-W clippy::semicolon-if-nothing-returned`
Build and Deploy Website
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/