Add stream-status to stream write return values, and expand documenta… #104
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
abi-up-to-date: | |
name: Check ABI files are up-to-date | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: ensure `./wit/deps` are in sync | |
run: | | |
curl -Lo 'wit-deps' https://github.com/bytecodealliance/wit-deps/releases/download/v0.3.2/wit-deps-x86_64-unknown-linux-musl | |
chmod +x wit-deps | |
./wit-deps lock --check | |
- uses: WebAssembly/wit-abi-up-to-date@v13 | |
with: | |
wit-abi-tag: wit-abi-0.11.0 |