Skip to content

ci: Add opt-in Langfuse observability at the shared interface boundary #158

ci: Add opt-in Langfuse observability at the shared interface boundary

ci: Add opt-in Langfuse observability at the shared interface boundary #158

Workflow file for this run

name: Tests
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Lint with ruff
run: |
uv run ruff check .
uv run ruff format --check .
continue-on-error: true
- name: Type check with mypy
run: uv run mypy TCT/
continue-on-error: true
- name: Run tests with pytest
run: uv run pytest tests/ -v --cov=TCT --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
fail_ci_if_error: false