Skip to content

Commit

Permalink
Add isort linting to workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
samriddhi99 committed Jul 26, 2024
1 parent 0622a19 commit 1eca625
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,17 @@ jobs:
with:
options: "--check"
src: "."

isort:
runs-on: ubuntu-latest
name: isort linting
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install isort
run: pip install isort
- name: Run isort
run: isort --check-only .

0 comments on commit 1eca625

Please sign in to comment.