fix: comprehensive quality audit — 30+ production bugs, test cleanup, lint #79
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: Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.2.2 | |
| - uses: astral-sh/setup-uv@e4db8464a088ece1b920f60402e813ea4de65b8f # v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| run: uv python install ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: uv sync --group dev | |
| - name: Lint | |
| run: uv run ruff check src/ | |
| - name: Format check | |
| run: uv run ruff format --check src/ | |
| - name: Test quality audit | |
| run: uv run python scripts/audit_test_quality.py | |
| - name: Run tests | |
| run: uv run pytest tests/ -q --tb=short --cov=chat_sdk --cov-fail-under=70 |