Skip to content

Download models on startup #370

Download models on startup

Download models on startup #370

Workflow file for this run

name: lint
on:
workflow_dispatch:
push:
branches:
- master
paths:
- "src/**"
- "scripts/**"
- "tests/**"
- ".github/workflows/lint.yaml"
pull_request:
paths:
- "src/**"
- "scripts/**"
- "tests/**"
- ".github/workflows/lint.yaml"
jobs:
ruff:
runs-on: ubuntu-24.04-4core-x86
steps:
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v6
with:
enable-cache: true
activate-environment: true
- run: uv python install
- run: uv sync
- run: uv run ruff check .
- run: uv run ruff format --check --diff .
basedpyright:
runs-on: ubuntu-24.04-4core-x86
steps:
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v6
with:
enable-cache: true
activate-environment: true
- run: uv python install
- run: uv sync
- run: uv run basedpyright .