Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,12 @@ jobs:
run: |
uv run zuban check pymodbus examples test

- name: ruff
- name: ruff (format check)
if: matrix.run_lint == true
run: |
uv run ruff format --check .

- name: ruff (lint check)
if: matrix.run_lint == true
run: |
uv run ruff check .
Expand Down
1 change: 1 addition & 0 deletions check_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ trap 'echo "\"${last_command}\" command filed with exit code $?."' EXIT

codespell
ruff check --fix --exit-non-zero-on-fix .
ruff format .
pylint --recursive=y examples pymodbus test
zuban check pymodbus examples test
if [ $1 ]; then
Expand Down
Loading