execute malluscript on browsers! [WIP] #118
build.yml
on: pull_request
Rustfmt
7s
Clippy
29s
Matrix: Build
Annotations
8 warnings
unneeded `return` statement:
src/lib.rs#L54
warning: unneeded `return` statement
--> src/lib.rs:54:13
|
54 | return output;
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
help: remove `return`
|
54 - return output;
54 + output
|
|
unneeded `return` statement:
src/lib.rs#L46
warning: unneeded `return` statement
--> src/lib.rs:46:21
|
46 | return exec.output;
| ^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
help: remove `return`
|
46 - return exec.output;
46 + exec.output
|
|
unneeded `return` statement:
src/lib.rs#L43
warning: unneeded `return` statement
--> src/lib.rs:43:21
|
43 | return output;
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
= note: `#[warn(clippy::needless_return)]` on by default
help: remove `return`
|
43 - return output;
43 + output
|
|
variant name ends with the enum's name:
src/executor/ast.rs#L45
warning: variant name ends with the enum's name
--> src/executor/ast.rs:45:5
|
45 | ListExpression((usize, usize), Vec<Expression>),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#enum_variant_names
= note: `#[warn(clippy::enum_variant_names)]` on by default
|
Build (linux)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Clippy
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/
|
Build (macos)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build (windows)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|