🔥(ci) remove checking print statement in lint-git

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.
This commit is contained in:
Manuel Raynaud
2026-08-13 12:08:23 +02:00
parent 1cb1c23ffe
commit 7cbee2f26a
-4
View File
@@ -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: |