Skip to content

updated README.md and pyproject.toml files #10

updated README.md and pyproject.toml files

updated README.md and pyproject.toml files #10

Workflow file for this run

name: Lint (Ruff)
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.14"
- name: Install dependencies
run: |
uv sync --dev
- name: Run Ruff
run: |
uv run ruff check .