diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 02589e4..25b7787 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements.txt - pip install pylint + pip install pylint ruff - name: Test with unittest run: | @@ -34,3 +34,6 @@ jobs: - name: Analysing the code with pylint run: | pylint $(git ls-files '*.py') + + - name: Run Ruff + run: ruff check --output-format=github .