This repository was archived by the owner on Aug 1, 2025. It is now read-only.
chore(deps) Update dependency isort to v6 #1280
This file contains hidden or 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: lint | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: setup python 3.10 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| - name: Setup Poetry | |
| uses: snok/install-poetry@v1 | |
| - name: Install | |
| run: | | |
| poetry install | |
| - name: run lint | |
| run: | | |
| poetry run tox -e lint |