From 7ad4562baa25ec7a9adc1fe60da16102e351ab8c Mon Sep 17 00:00:00 2001 From: ahtlon Date: Sun, 9 Aug 2026 14:53:19 +0200 Subject: [PATCH] debug --- .gitea/workflows/pr_check.yml | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/pr_check.yml b/.gitea/workflows/pr_check.yml index 146f193..e2d9cc4 100644 --- a/.gitea/workflows/pr_check.yml +++ b/.gitea/workflows/pr_check.yml @@ -7,17 +7,34 @@ jobs: ci-test: runs-on: node-current steps: + - name: Setup PRBot uses: imgurbot12/prbot@v2 + env: + RUST_LOG: debug with: username: ${{ secrets.prbot_username }} api_token: ${{ secrets.prbot_token }} - - name: Do Something With Errors - run: | - echo "::error file=app.js,line=1::Missing semicolon" | prbot - echo "::warning file=app.js,line=1,col=5,endColumn=7::Missing semicolon" | prbot + - uses: actions/checkout@v6 + - name: Set up UV + uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0 + + - run: | + apt update + apt install libpcsclite-dev python3-dev -y + + - 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: Post PR Feedback if: always() - run: prbot commit \ No newline at end of file + run: prbot commit + env: + RUST_LOG: debug