Skip to content

Commit

Permalink
chore: add corrected isort with black as profile
Browse files Browse the repository at this point in the history
  • Loading branch information
philipdelorenzo committed Oct 24, 2024
1 parent e082419 commit ae4cda5
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,17 @@ jobs:
python -m pip install black==23.9.1
python -m black -t py312 --check --diff .
isort:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Python Setup
uses: actions/setup-python@v5
with:
python-version: 3.12.2

- name: Python Isort
run: |
echo "Running Isort..."
Expand Down

0 comments on commit ae4cda5

Please sign in to comment.