diff --git a/.gitea/workflows/pr_check.yml b/.gitea/workflows/pr_check.yml index e2d9cc4..f35238c 100644 --- a/.gitea/workflows/pr_check.yml +++ b/.gitea/workflows/pr_check.yml @@ -27,11 +27,9 @@ jobs: - name: Install deps run: uv sync --locked --all-extras --dev - - name: Run ruff check - run: uv run ruff check --output-format=github | cat | prbot - continue-on-error: true - env: - RUST_LOG: debug + - name: Do Something With Errors + run: | + echo "::error title=ruff (E722),file=/workspace/malobeo/gatekeeper/app/services/scanner.py,line=133,col=13,endLine=133,endColumn=19::app/services/scanner.py:133:13: E722 Do not use bare `except`" | prbot - name: Post PR Feedback if: always()