🔥(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-09-02 09:36:33 +02:00
parent e7afd2a386
commit e909c4905e
-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: |