Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/webassembly/wit-abi-up-to-date
- Owner: WebAssembly
- License: apache-2.0
- Created: 2021-11-16T22:03:55.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-21T13:31:46.000Z (3 months ago)
- Last Synced: 2024-09-20T16:31:02.192Z (about 2 months ago)
- Size: 102 KB
- Stars: 5
- Watchers: 14
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
```