Skip to content

fix(infra): disable HF Xet to use classic CDN download path #51

fix(infra): disable HF Xet to use classic CDN download path

fix(infra): disable HF Xet to use classic CDN download path #51

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install dependencies
run: uv sync --extra dev
- name: Lint (ruff check)
run: uv run ruff check src/ tests/
- name: Format check (ruff format)
run: uv run ruff format --check src/ tests/
- name: Test
run: uv run pytest