Skip to content

refactor(display): split output/display.py by output surface (#41) (#82) #195

refactor(display): split output/display.py by output surface (#41) (#82)

refactor(display): split output/display.py by output surface (#41) (#82) #195

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff linter
run: ruff check .
- name: Run Ruff formatter check
run: ruff format --check .