build(deps): bump astral-sh/setup-uv from 9.0.0 to 10.0.1 #285
Workflow file for this run
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: "Linting" | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: {} | |
| jobs: | |
| lint: | |
| name: "Python Code Quality and Lint (${{ matrix.group }})" | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: | |
| - group: linting | |
| commands: | | |
| uv run --group lint ruff check src/kuckuck unittests | |
| - group: type_check | |
| commands: | | |
| uv run --group type_check --extra cli --extra mcp mypy --show-error-codes src/kuckuck --strict | |
| uv run --group type_check --extra cli --extra mcp mypy --show-error-codes unittests --strict | |
| - group: spell_check | |
| commands: | | |
| uv run --group spell_check codespell --ignore-words=domain-specific-terms.txt src | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v10.0.1 | |
| with: | |
| python-version: 3.14 | |
| - name: Run ${{ matrix.group }} | |
| run: | | |
| ${{ matrix.commands }} |