Skip to content

Commit f8e3272

Browse files
committed
make ci lint not rely on make
Signed-off-by: karthik2804 <[email protected]>
1 parent 980eaf8 commit f8e3272

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
rustup component add clippy
3535
3636
- name: lint code
37-
run: make lint
37+
run: cargo fmt --all -- --check
3838

3939
- name: Run Clippy
4040
run: cargo clippy --all -- -D warnings

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ impl CommandTrigger {
132132
.get_func(&mut store, "_start")
133133
.context("Expected component to export _start function")?;
134134

135-
let _ = start.call_async(&mut store, &[], &mut []).await?;
135+
start.call_async(&mut store, &[], &mut []).await?;
136136
}
137137
}
138138

0 commit comments

Comments
 (0)