Skip to content

docs: standardize documentation with numpy-style docstrings #1

docs: standardize documentation with numpy-style docstrings

docs: standardize documentation with numpy-style docstrings #1

Workflow file for this run

name: Lint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Install dependencies
run: |
uv venv
uv pip install ruff
- name: Check formatting with ruff
run: uv run ruff format --check
- name: Run linting with ruff (all rules)
run: uv run ruff check