From 7cbee2f26a960c9e77db16ad42dd80f52f056393 Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Tue, 4 Aug 2026 17:13:20 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5(ci)=20remove=20checking=20print=20?= =?UTF-8?q?statement=20in=20lint-git?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since we use ruff, it is not needed anymore to check the presence of print statement, the rule T201 is already doing it in a more performant way. --- .github/workflows/impress.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/impress.yml b/.github/workflows/impress.yml index 9aae0cd28..b0c6fbc31 100644 --- a/.github/workflows/impress.yml +++ b/.github/workflows/impress.yml @@ -27,10 +27,6 @@ jobs: fetch-depth: 0 - name: show run: git log - - name: Enforce absence of print statements in code - if: always() - run: | - ! git diff origin/${{ github.event.pull_request.base.ref }}..HEAD -- src/backend ':(exclude)**/impress.yml' | grep "print(" - name: Check absence of fixup commits if: always() run: |