docs: new sprocket version #403
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: Ruff | |
on: [push, pull_request] | |
jobs: | |
ruff: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v6 | |
with: | |
version: "0.7.12" | |
python-version: 3.13.3 | |
- name: Install dependencies | |
run: uv sync --all-extras | |
# Include `--output-format=github` to enable automatic inline annotations. | |
# included rules that are check specified in pyproject.toml | |
- name: Run Ruff linter | |
run: uv run ruff check --output-format=github tests/ | |
# Include `--output-format=github` to enable automatic inline annotations. | |
- name: Run Ruff formatter | |
run: uv run ruff format --check tests/ |