feat: use ruff in GH style-checks action

This commit is contained in:
psychedelicious 2023-11-11 10:14:21 +11:00
parent 884ec0b5df
commit 99e4b87fae

View File

@ -18,8 +18,7 @@ jobs:
- name: Install dependencies with pip
run: |
pip install black flake8 Flake8-pyproject isort
pip install ruff
- run: isort --check-only .
- run: black --check .
- run: flake8
- run: ruff check .
- run: ruff format --check .