Files
TexTeller/.github/workflows/python-lint.yml
OleehyO 4f88499de5 🔧 [chore] Replace pre-commit with ruff for linting workflow
- Update CI workflow to use ruff instead of pre-commit
- Remove E999 from ruff ignore rules in pyproject.toml

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-14 22:34:42 +08:00

28 lines
490 B
YAML

name: Python Linting
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run ruff
run: ruff check .