Merge worktree-issue-21: Normalize active DataOps branding (#21) #3
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: Assistant CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/assistant-ci.yml" | |
| - "assistants/**" | |
| pull_request: | |
| paths: | |
| - ".github/workflows/assistant-ci.yml" | |
| - "assistants/**" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| dataops-podcast-module: | |
| name: DataOps podcast assistant tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v8.1.0 | |
| - name: Install Python | |
| run: uv python install 3.13 | |
| - name: Run DataOps podcast assistant unit tests | |
| run: uv run --project assistants/podcast pytest | |
| - name: Verify real-engine tests are opt-in | |
| working-directory: assistants/podcast | |
| run: uv run pytest tests_integration -q |