diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index ef188bc6..9e123772 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -2,11 +2,13 @@ name: ✅ Quality Checks on: [ push ] jobs: - python-compatibility: + code-quality-checks: runs-on: ubuntu-latest steps: - name: Checkout Code uses: actions/checkout@v4 - - name: Install uv + - name: Install ruff uses: astral-sh/ruff-action@v1 + with: + args: "check" \ No newline at end of file