Skip to content

conform to normal behavior #28

conform to normal behavior

conform to normal behavior #28

Workflow file for this run

---
name: isort
on: push # yamllint disable-line rule:truthy
jobs:
isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: pip install 'isort>=5.0.1'
- uses: akaihola/lint-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
isort: true
continue_on_error: false