From 29fd1a8d82ce690036217ab6062e6d752d81f3ef Mon Sep 17 00:00:00 2001 From: Pallab Pain Date: Thu, 17 Oct 2024 17:54:11 +0530 Subject: [PATCH] ci: fix code quality workflow --- .github/workflows/pull-request.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index ef188bc6..c62435ff 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: Run checks uses: astral-sh/ruff-action@v1 + with: + args: "check" \ No newline at end of file