Skip to content

Commit 3bcb456

Browse files
committed
Revert "Show ruff verbose output to debug formatting difference in CI"
This reverts commit 66cc980.
1 parent 290c4b3 commit 3bcb456

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/python-code-quality.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)