Skip to content
This repository was archived by the owner on Dec 22, 2025. It is now read-only.

Update README.md

Update README.md #76

Workflow file for this run

name: Checks
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: python3 -m pip install ".[dev]"
- name: Check style
run: python3 -m ruff check . && ruff format --check .