diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml index 65c70da0..2335a6c3 100644 --- a/.github/workflows/ruff.yml +++ b/.github/workflows/ruff.yml @@ -7,11 +7,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Linting - uses: chartboost/ruff-action@v1 - with: - args: check - - name: Check Formatting - uses: chartboost/ruff-action@v1 - with: - args: format --check + - uses: astral-sh/ruff-action@v2 + - run: ruff check --output-format=concise + - run: ruff format --check