fix: remove Qdrant host port mapping to avoid port conflict on install #39
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: [feat/**, fix/**, chore/**] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| docker-build: | |
| runs-on: ubuntu-latest | |
| name: Docker Build | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build Docker image | |
| run: docker compose build | |
| pytest: | |
| runs-on: ubuntu-latest | |
| name: Python Tests (informational) | |
| continue-on-error: true # soft gate — integration tests need API server not available in CI | |
| env: | |
| CI: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| cache: pip | |
| - name: Install dependencies | |
| # Skip [diarization] to avoid pulling torch (~2GB) in CI | |
| run: pip install -e ".[dev]" | |
| - name: Run tests | |
| run: python -m pytest -q | |
| tsc: | |
| runs-on: ubuntu-latest | |
| name: TypeScript Check | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| cache: pnpm | |
| cache-dependency-path: frontend/pnpm-lock.yaml | |
| - name: Install frontend dependencies | |
| working-directory: frontend | |
| run: pnpm install --frozen-lockfile | |
| - name: TypeScript type check | |
| working-directory: frontend | |
| run: npx tsc --noEmit |