Skip to content

Commit

Permalink
Merge pull request #8 from karthik2804/fix_ci
Browse files Browse the repository at this point in the history
make ci lint not rely on make
  • Loading branch information
karthik2804 authored Apr 3, 2024
2 parents 980eaf8 + f8e3272 commit 81efd1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
rustup component add clippy
- name: lint code
run: make lint
run: cargo fmt --all -- --check

- name: Run Clippy
run: cargo clippy --all -- -D warnings
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ impl CommandTrigger {
.get_func(&mut store, "_start")
.context("Expected component to export _start function")?;

let _ = start.call_async(&mut store, &[], &mut []).await?;
start.call_async(&mut store, &[], &mut []).await?;
}
}

Expand Down

0 comments on commit 81efd1f

Please sign in to comment.