Skip to content

Commit

Permalink
remove isort checks from Lint routine
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbesnard1 committed Feb 24, 2025
1 parent 119602a commit f365a66
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/pylint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint black isort
pip install pylint black
python -m pip install --no-deps -e .
- name: Run Black (Check Code Formatting)
run: black --check --diff .

- name: Run Isort (Check Import Sorting)
run: isort --check-only --diff .

- name: Run Pylint (Check Code Quality)
run: pylint gedidb/ --disable=C0301 --exit-zero

0 comments on commit f365a66

Please sign in to comment.