Skip to content

fix: Correct strip command flag logic for left/right options #9

fix: Correct strip command flag logic for left/right options

fix: Correct strip command flag logic for left/right options #9

Workflow file for this run

name: Lint
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
ruff:
name: Ruff Linting
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
cache: 'pip'
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Run ruff check
run: |
ruff check . --output-format=github
- name: Run ruff format check
run: |
ruff format --check .