Skip to content

Add new features and documentation for workflow UI and API enhancements #11

Add new features and documentation for workflow UI and API enhancements

Add new features and documentation for workflow UI and API enhancements #11

# 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