feat(gen-image): wire gen-image into main.py dispatch #81
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: Integration Test | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - 'ww/**' | |
| - 'integration_tests/**' | |
| pull_request: | |
| paths: | |
| - 'ww/**' | |
| - 'integration_tests/**' | |
| concurrency: | |
| group: 'integration-test' | |
| cancel-in-progress: false | |
| jobs: | |
| integration_job: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python 3.13.2 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.13.2" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e . | |
| pip install PyJWT numpy Pillow | |
| - name: Run integration tests | |
| run: | | |
| export PYTHONPATH=$PYTHONPATH:. | |
| python -m unittest discover integration_tests -v |