Skip to content

ci: enable isort and black to run on every PR #681

ci: enable isort and black to run on every PR

ci: enable isort and black to run on every PR #681

Workflow file for this run

name: Lint PR
on:
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff isort black
- name: Run linters
run: |
ruff check .
isort --check-only --diff .