Skip to content

DEVOPS-1440 Setup Ruff #4

DEVOPS-1440 Setup Ruff

DEVOPS-1440 Setup Ruff #4

Workflow file for this run

name: Ruff Linter
on: [pull_request]
jobs:
run-pre-commit:
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install ruff
run: pip install ruff
- name: Run ruff format checker
run: ruff format --check --config pyproject.toml
- name: Run ruff format checker
run: ruff check --config pyproject.toml