Skip to content

Fix comparison viewer bug #10

Fix comparison viewer bug

Fix comparison viewer bug #10

Workflow file for this run

name: Check code with ruff
on:
pull_request:
branches:
- main
paths:
- "**/*.py"
- "pyproject.toml"
jobs:
lint:
runs-on: ubuntu-latest
name: Lint with Ruff using Python 3.11.10
steps:
- uses: actions/checkout@v4
- name: Install poetry using pipx
run: pipx install poetry && pipx ensurepath
- uses: actions/setup-python@v5
with:
python-version: "3.11.10"
cache: "poetry"
- name: Install dependencies
run: |
poetry config virtualenvs.in-project true
poetry install --no-interaction --no-root
- name: Run Ruff linting
run: poetry run ruff check . --output-format=full
- name: Run Ruff formatting check
run: poetry run ruff format --check .