Skip to content

docs: new sprocket version #403

docs: new sprocket version

docs: new sprocket version #403

Workflow file for this run

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/