We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 980eaf8 commit f8e3272Copy full SHA for f8e3272
.github/workflows/build.yaml
@@ -34,7 +34,7 @@ jobs:
34
rustup component add clippy
35
36
- name: lint code
37
- run: make lint
+ run: cargo fmt --all -- --check
38
39
- name: Run Clippy
40
run: cargo clippy --all -- -D warnings
src/lib.rs
@@ -132,7 +132,7 @@ impl CommandTrigger {
132
.get_func(&mut store, "_start")
133
.context("Expected component to export _start function")?;
134
135
- let _ = start.call_async(&mut store, &[], &mut []).await?;
+ start.call_async(&mut store, &[], &mut []).await?;
136
}
137
138
0 commit comments