execute malluscript on browsers! [WIP] #109
build.yml
on: pull_request
Rustfmt
9s
Clippy
25s
Matrix: Build
Annotations
7 warnings
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/
|
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
|
|
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/
|