From dd40a2285ba9070df872f7ede5b38bb52033336b Mon Sep 17 00:00:00 2001 From: Pallab Pain Date: Thu, 17 Oct 2024 17:41:54 +0530 Subject: [PATCH] ci: adds quality check workflow --- .github/workflows/pull-request.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/pull-request.yml diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml new file mode 100644 index 00000000..ef188bc6 --- /dev/null +++ b/.github/workflows/pull-request.yml @@ -0,0 +1,12 @@ +name: ✅ Quality Checks +on: [ push ] + +jobs: + python-compatibility: + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v4 + + - name: Install uv + uses: astral-sh/ruff-action@v1