Skip to content

isort imports

isort imports #6

Workflow file for this run

name: Check code style for plugin
on: [push, pull_request]
jobs:
Check-Code-Style-for-Plugin-Processing-R:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
architecture: 'x64'
- name: Install Black and Isort
run: pip install black isort
- name: Run Black
run: black processing_r --check --verbose --line-length 120
- name: Run Isort
run: isort processing_r --check-only --diff --profile black --line-width 120