Skip to content

ci: add Ruff config, pre-commit hooks, and GitHub Actions lint workflow #3

ci: add Ruff config, pre-commit hooks, and GitHub Actions lint workflow

ci: add Ruff config, pre-commit hooks, and GitHub Actions lint workflow #3

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- run: uv python install 3.10
- run: uv pip install ruff
- run: uv run ruff check .