Skip to content
Merged
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
10 changes: 10 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
run: cargo binstall --force wasmtime-cli
- name: Install wkg
run: cargo binstall --force wkg
- name: Install wasm-tools
run: cargo binstall --force wasm-tools
- name: Sync wit
run: make wit
- name: Check for drift in generated wit
Expand All @@ -45,6 +47,14 @@ jobs:
run: docker run --rm --name valkey -d -p 6379:6379 valkey/valkey:8
- name: Test
run: make test
- name: Capture WIT
working-directory: ./lib
run: |
for component in *.wasm ; do
echo "::group::${component}"
wasm-tools component wit "${component}"
echo "::endgroup::"
done

publish:
if: startsWith(github.ref, 'refs/tags/')
Expand Down