Skip to content

Commit

Permalink
try hinting solutions to failed lints
Browse files Browse the repository at this point in the history
  • Loading branch information
kedhammar committed Nov 30, 2023
1 parent 0fd97ff commit faa059f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/lint-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ jobs:
python -m pip install --upgrade pip
pip install isort
- name: isort --> Check for best-practice sorting of imports
run: isort --check .
run: |
msg="Please run 'isort .' on this repo."
isort --check . || echo "::error ::$msg" && exit 1

ruff-format:
runs-on: ubuntu-latest
Expand Down

0 comments on commit faa059f

Please sign in to comment.