Skip to content

Chore/add ruff configuration #6

Chore/add ruff configuration

Chore/add ruff configuration #6

Workflow file for this run

name: Ruff Code Check
on:
push:
pull_request:
jobs:
ruff-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.13'
- name: Install Ruff
run: pip install ruff
- name: Run Ruff format check
run: ruff format --check .
- name: Run Ruff linting
run: ruff check .