feat: add maze generator and solver playground example #110
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: gengo-ci | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| env: | |
| WASMTIME_VERSION: v45.0.0 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Zig | |
| uses: mlugg/setup-zig@v2 | |
| with: | |
| version: 0.16.0 | |
| - name: Install wasmtime | |
| run: | | |
| curl -sSf https://wasmtime.dev/install.sh | bash -s -- --version "$WASMTIME_VERSION" | |
| echo "$HOME/.wasmtime/bin" >> "$GITHUB_PATH" | |
| - name: Run VM safety unit tests | |
| run: zig build unit | |
| - name: Build WASI binary | |
| run: zig build -Dpreset=dev wasi | |
| - name: Run conformance tests | |
| run: zig build -Dpreset=dev test |