This repository was archived by the owner on Oct 21, 2025. It is now read-only.
LLM-generated prompts #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: pyproject.toml | |
| - name: Install dependencies | |
| run: uv sync | |
| - name: Type check with ty | |
| run: uv run ty check src | |
| - name: Lint with ruff | |
| run: uv run ruff check src | |
| - name: Format check with ruff | |
| run: uv run ruff format --check src |