Skip to content

fix: Fix format

fix: Fix format #68

Workflow file for this run

name: Ruff Lint
on:
push:
branches:
- main
pull_request:
types:
- opened
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install Ruff
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff
run: ruff check .