Skip to content

Merge pull request #28 from Chinchill-AI/fix/mock-open-modal #58

Merge pull request #28 from Chinchill-AI/fix/mock-open-modal

Merge pull request #28 from Chinchill-AI/fix/mock-open-modal #58

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["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: Run tests
run: uv run pytest tests/ -q --tb=short --cov=chat_sdk --cov-fail-under=70