diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9d6a34d1..1884fc9a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,7 +45,7 @@ jobs: - name: Run ruff if: matrix.os != 'windows-latest' run: | - ruff . + ruff check . - name: Run test-llm-load-plugins.sh if: matrix.os != 'windows-latest' run: | diff --git a/Justfile b/Justfile index a83d3600..868e7ea7 100644 --- a/Justfile +++ b/Justfile @@ -21,7 +21,7 @@ echo " mypy" pipenv run mypy llm echo " ruff" - pipenv run ruff . + pipenv run ruff check . # Run mypy @mypy: @@ -42,7 +42,7 @@ # Run automatic fixes @fix: cog - pipenv run ruff . --fix + pipenv run ruff check . --fix pipenv run black . # Push commit if tests pass