Merge pull request #802 from clintonsteiner/fixVerificationPyUpgrade #1400
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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 |