Add new features and documentation for workflow UI and API enhancements #11
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
| # PURPOSE: Run workflow_ui pytest suite on push/PR. | |
| # DEPENDENCIES: workflow_ui/requirements.txt | |
| # MODIFICATION NOTES: Path-filtered; runs from ObsidianVault. | |
| name: workflow_ui tests | |
| on: | |
| push: | |
| branches: [main, master] | |
| paths: | |
| - "ObsidianVault/workflow_ui/**" | |
| pull_request: | |
| branches: [main, master] | |
| paths: | |
| - "ObsidianVault/workflow_ui/**" | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install dependencies | |
| run: pip install -r ObsidianVault/workflow_ui/requirements.txt | |
| - name: Run pytest | |
| run: cd ObsidianVault && python -m pytest workflow_ui/tests/ -v --tb=short --ignore=workflow_ui/tests/test_e2e_playwright.py |