Skip to content

feat: multi-provider routing with cost control #24

feat: multi-provider routing with cost control

feat: multi-provider routing with cost control #24

Workflow file for this run

name: Pre-commit Checks
on:
pull_request:
types: [opened, reopened, synchronize]
branches:
- main
workflow_dispatch:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- 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 with uv
run: uv sync
- name: Run pre-commit checks
run: |
uv run pre-commit run --all-files