Skip to content

blackify

blackify #7

Workflow file for this run

name: Run isort
on:
push:
pull_request:
merge_group:
jobs:
isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
poetry install --with dev
- name: Check code with isort
run: |
poetry run isort . -c