feat: implement missing features for v2.0.0 #14
This file contains hidden or 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: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build and test in Docker | |
| run: | | |
| docker build \ | |
| --build-arg WASMTIME_VERSION=44.0.0 \ | |
| -t vmod-wasm-test . | |
| docker run --rm vmod-wasm-test make check |