Skip to content

feat: multi-provider routing with cost control #23

feat: multi-provider routing with cost control

feat: multi-provider routing with cost control #23

Workflow file for this run

name: Tests
on:
pull_request:
types: [opened, reopened, synchronize]
branches:
- main
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Install dependencies
run: uv sync
- name: Run unit tests
run: uv run pytest tests/src -m "not integration" -v
- name: Run regression tests
run: uv run pytest tests/regression -m regression -v