diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml index 249c8b9..7c22f46 100644 --- a/.github/workflows/ruff.yml +++ b/.github/workflows/ruff.yml @@ -19,7 +19,8 @@ jobs: steps: - uses: actions/checkout@v4 - - run: python -Im pip install --user ruff + - name: Install Ruff + run: pip install ruff - name: Run Ruff - run: ruff --output-format=github . \ No newline at end of file + run: ruff check --output-format=github . \ No newline at end of file