feat(mysql): implementing mysql in wasip2 #38
Workflow file for this run
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: Run Integration tests | |
| on: | |
| pull_request: | |
| branches: | |
| - wasip2 | |
| workflow_dispatch: {} | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.24' | |
| - name: Setup TinyGo | |
| uses: acifani/setup-tinygo@v2 | |
| with: | |
| tinygo-version: '0.37.0' | |
| - name: Setup Spin | |
| uses: fermyon/actions/spin/setup@v1 | |
| with: | |
| version: "v3.2.0" | |
| - name: Setup `wasm-tools` | |
| uses: bytecodealliance/actions/wasm-tools/setup@v1 | |
| - name: Run wasip2 integration tests | |
| run: make test-integration-wasip2 | |