Skip to content

Fix formatting

Fix formatting #5

Workflow file for this run

name: Ruff Code Quality Check
on: [ push, pull_request ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ruff:
name: Ruff Check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
- name: Install Ruff
run: |
pip install ruff
- name: Run Ruff check
run: |
ruff check . --output-format=github
- name: Check code formatting
run: |
ruff format --check . --diff