update componentize-py and Spin WIT files
#2
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: Build | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Spin | |
| # TODO: Switch to Spin 4.0 when it's available | |
| run: | | |
| curl -OL https://github.com/spinframework/spin/releases/download/canary/spin-canary-linux-amd64.tar.gz | |
| tar xf spin-canary-linux-amd64.tar.gz | |
| pwd >> $GITHUB_PATH | |
| # uses: fermyon/actions/spin/setup@v1 | |
| # with: | |
| # version: "v4.0.0" | |
| - name: Build examples and run tests | |
| run: | | |
| python -m venv venv | |
| source venv/bin/activate | |
| pip install componentize-py==0.22.0 http-router==4.1.2 build==1.4.2 | |
| python -m build | |
| pip install dist/spin_sdk-4.0.0-py3-none-any.whl | |
| bash run_tests.sh |