build(deps-dev): Bump ruff from 0.11.13 to 0.15.1 #135
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: Code formatter and linter | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: Ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Enable caching | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: Install Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version-file: "pyproject.toml" | |
| - name: Install Dependencies | |
| run: | | |
| uv sync --locked --all-extras --dev | |
| - name: Format with isort and black | |
| run: | | |
| uv run isort . | |
| uv run black . | |
| - name: Linting with ruff | |
| run: | | |
| uv run ruff check . | |
| - name: Build docs | |
| run: | | |
| uv run mkdocs build |