We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8b3300 commit 352392fCopy full SHA for 352392f
.github/workflows/ci-image-checks.yml
@@ -155,7 +155,10 @@ jobs:
155
platform: ${{ inputs.platform }}
156
save-cache: false
157
- name: "Static checks"
158
- run: prek --all-files --show-diff-on-failure --color always
+ # We have added cache cleaning here as otherwise it was failing on rst-backticks hook
159
+ # This increases the time of this step from ~9 minutes 25 seconds to ~12 minutes 37 seconds
160
+ # If we want to remove the first part, we need to find root cause of the problem
161
+ run: prek cache clean && prek --all-files --show-diff-on-failure --color always
162
env:
163
VERBOSE: "false"
164
SKIP: ${{ inputs.skip-prek-hooks }}
0 commit comments