Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/webassembly/wit-abi-up-to-date


https://github.com/webassembly/wit-abi-up-to-date

Last synced: 15 days ago
JSON representation

Awesome Lists containing this project

README

        

# GitHub Action for generating `*.md` from `*.wit`.

Configured with:

```yml
name: CI
on:
push:
branches: [main]
tags-ignore: [dev]
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@v4
- uses: WebAssembly/wit-abi-up-to-date@v20
```

optionally:

```yml
jobs:
abi-up-to-date:
name: Check ABI files are up-to-date
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: WebAssembly/wit-abi-up-to-date@v20
with:
wit-bindgen: '0.26.0'
worlds: 'command reactor'
directory: 'wit'
```