diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3db21d09ce0..0e48cc8d4b1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -350,14 +350,14 @@ jobs: if: needs.info.outputs.test_full_suite == 'true' run: | . venv/bin/activate - pre-commit run --hook-stage manual ruff --all-files + pre-commit run --hook-stage manual ruff --all-files --show-diff-on-failure - name: Run ruff (partially) if: needs.info.outputs.test_full_suite == 'false' shell: bash run: | . venv/bin/activate shopt -s globstar - pre-commit run --hook-stage manual ruff --files {homeassistant,tests}/components/${{ needs.info.outputs.integrations_glob }}/{*,**/*} + pre-commit run --hook-stage manual ruff --files {homeassistant,tests}/components/${{ needs.info.outputs.integrations_glob }}/{*,**/*} --show-diff-on-failure lint-isort: name: Check isort