chore: update to new WIT files handling #41
Workflow file for this run
This file contains 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: Check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
- name: "Set up Python" | |
uses: actions/setup-python@v5 | |
with: | |
python-version-file: "pyproject.toml" | |
- name: Install edgee | |
uses: edgee-cloud/[email protected] | |
- name: Build component | |
run: | | |
make setup | |
edgee components build | |
- name: Verify .wasm file exists | |
run: | | |
if [ ! -f "./dc_component.wasm" ]; then | |
echo "❌ Error: dc_component.wasm not found" >&2 | |
exit 1 | |
fi | |
- name: Test component | |
run: | | |
make test |