Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
debug reviewdog
  • Loading branch information
ShaharNaveh committed Mar 26, 2026
commit c7be0d6285a4a2680f6477e4785e534aaab61660
11 changes: 8 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -371,10 +371,12 @@ jobs:
path: ~/.cache/prek

- name: prek
id: prek
uses: j178/prek-action@79f765515bd648eb4d6bb1b17277b7cb22cb6468 # v2.0.0
with:
cache: false
show-verbose-logs: false
continue-on-error: true

- name: save prek cache
if: ${{ github.ref == 'refs/heads/main' }} # only save on main
Expand All @@ -384,11 +386,14 @@ jobs:
path: ~/.cache/prek

- name: reviewdog
if: failure()
uses: reviewdog/action-suggester@aa38384ceb608d00f84b4690cacc83a5aba307ff # 1.24.0
with:
tool_name: prek
fail_level: error
fail_level: none
cleanup: false

- name: fail
if: ${{ steps.prek.outcome == 'failure' }}
run: exit 1

miri:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip:ci') }}
Expand Down
Loading