File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -70,18 +70,18 @@ jobs:
7070 - name : Install Ruff
7171 run : pip install --break-system-packages "ruff==${RUFF_VERSION}"
7272 - name : Run Ruff (output annotations on fixable errors)
73- run : ruff check --output-format=github . --preview --unsafe-fixes -v
73+ run : ruff check --output-format=github . --preview --unsafe-fixes
7474 continue-on-error : true
7575 - name : Run Ruff (apply fixes for suggestions)
76- run : ruff check . --preview --fix --unsafe-fixes -v
76+ run : ruff check . --preview --fix --unsafe-fixes
7777 - name : Run `ruff format` showing diff without failing
7878 continue-on-error : true
7979 if : ${{ !cancelled() }}
80- run : ruff format --diff -v
80+ run : ruff format --diff
8181 - name : Run `ruff format` fixing files
8282 # Run `ruff format` even when `ruff check` fixed files: fixes can require formatting
8383 if : ${{ !cancelled() }}
84- run : ruff format -v
84+ run : ruff format
8585 - name : Create and uploads code suggestions to apply for Ruff
8686 # Will fail fast here if there are changes required
8787 id : diff-ruff
You can’t perform that action at this time.
0 commit comments