refact: use ruff instead of autopep8,bandit,pylint for linting

This commit is contained in:
sebthom
2025-04-28 12:51:51 +02:00
parent f0b84ab335
commit 376ec76226
27 changed files with 437 additions and 605 deletions

View File

@@ -134,12 +134,16 @@ jobs:
run: pdm show
- name: Security Audit
run: pdm run audit
- name: Check with ruff
run: pdm run ruff check
- name: Check code style
run: pdm run lint
- name: Check with mypy
run: pdm run mypy
- name: Check with pyright
run: pdm run pyright
- name: Run unit tests