Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
run: cargo binstall --force cargo-component
- name: Install wasm-tools
run: cargo binstall --force wasm-tools
- name: Install wac-cli
run: cargo binstall --force wac-cli
- name: Fetch wit
run: make wit
- name: Check for drift in generated wit
Expand All @@ -45,6 +47,8 @@ jobs:
wasm-tools component wit "${component}"
echo "::endgroup::"
done
- name: Build test components
run: make tests

publish:
if: startsWith(github.ref, 'refs/tags/')
Expand Down
241 changes: 235 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
resolver = "2"
members = [
"components/*",
"crates/*",
"tests/*",
]

[workspace.dependencies]
latch-n = { path = "./crates/latch-n" }
wit-bindgen = "0.57.1"
Loading