Skip to content

Simple linting fixes. #4

Simple linting fixes.

Simple linting fixes. #4

name: Ruff Format Check (All Pushes)
on:
push:
jobs:
format-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install Ruff
run: pip install ruff
- name: Check Formatting
run: ruff check . --exit-zero --diff