fix: decoding/encoding of document iface usage #60
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: wit | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: taiki-e/cache-cargo-install-action@v2 | |
with: | |
tool: wit-deps-cli | |
- uses: taiki-e/cache-cargo-install-action@v2 | |
with: | |
tool: wit-bindgen-cli | |
- name: fetch WIT dependencies | |
run: wit-deps | |
- name: Run wit-bindgen to test WIT | |
run: wit-bindgen markdown --out-dir /tmp wit/ |