Skip to content

Refactor load_tree function to accept Path type and update parameter … #39

Refactor load_tree function to accept Path type and update parameter …

Refactor load_tree function to accept Path type and update parameter … #39

Workflow file for this run

name: Lint
on:
push:
branches: ["main", "devel"]
pull_request:
branches: ["main", "devel"]
jobs:
lint:
name: Ruff
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: "3.11"
- name: Install dependencies
run: uv sync --extra dev
- name: Check formatting
run: uv run ruff format --check
- name: Run linter
run: uv run ruff check