WIP #39
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: wasm | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Build and Test on WebAssembly | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # Use Swift 6.0.3 to match the pinned SDK version in build-and-test-wasm.sh | |
| # The script will automatically install the 6.0.3-RELEASE WASM SDK | |
| - name: Install Swift | |
| uses: swift-actions/setup-swift@v2 | |
| with: | |
| swift-version: "6.0.3" | |
| - name: Build and Test | |
| run: ./scripts/build-and-test-wasm.sh |