Skip to content

Commit

Permalink
ci: fix return error
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniBodor committed Jun 20, 2024
1 parent 7973ca0 commit ee2df5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@ jobs:
- name: Check linting and formatting using ruff
run: |
python3 -m pip install ruff
ruff check || echo "Please ensure you have the latest version of ruff (`ruff -V`) installed locally." && (exit 1)
ruff format --check || echo "Please ensure you have the latest version of ruff (`ruff -V`) installed locally." && (exit 1)
ruff check || (echo "Please ensure you have the latest version of ruff (`ruff -V`) installed locally." && (exit 1))
ruff format --check || (echo "Please ensure you have the latest version of ruff (`ruff -V`) installed locally." && (exit 1))

0 comments on commit ee2df5c

Please sign in to comment.