Skip to content

Move comparison helpers #3767

Move comparison helpers

Move comparison helpers #3767

Workflow file for this run

name: autoruff
on:
pull_request:
branches:
- master
- "**dev"
paths:
- "**/*.py"
- "pyproject.toml"
jobs:
lint:
runs-on: ubuntu-latest
name: Lint with Ruff using Python 3.12.1
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.12.1"
cache: "poetry"
- name: Install dependencies
run: |
poetry config virtualenvs.in-project true
poetry install --no-interaction --no-root --only linting
- name: Run Ruff formatting
run: poetry run ruff check --output-format=full