Skip to content

update workflows

update workflows #5

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: isort
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install isort
run: |
python -m pip install -U isort
- name: Check that imports are sorted
run: |
isort --check --profile=black --line-length=120 --diff .