Bump ruff from 0.14.10 to 0.14.11 #442
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: Test | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: astral-sh/setup-uv@v3 | |
| with: | |
| enable-cache: true | |
| # Keep in sync with pyproject.toml's `tool.uv.required-version`. | |
| version: "0.9.18" | |
| # Keep in sync with pyproject.toml's `project.requires-python`. | |
| - run: uv python install 3.11 | |
| - run: uv sync --locked | |
| - run: uv run -m skeleton | |
| - run: uv run ruff format --check | |
| - run: uv run ruff check | |
| - run: uv run ty check | |
| - run: uv run pytest |