Skip to content

feat: add maze generator and solver playground example #110

feat: add maze generator and solver playground example

feat: add maze generator and solver playground example #110

Workflow file for this run

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