diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml index 93766034..c21359eb 100644 --- a/.github/workflows/validation.yml +++ b/.github/workflows/validation.yml @@ -37,7 +37,7 @@ jobs: run: SKIP=ruff-linter,ruff-formatter,slotscheck,pyright pre-commit run --all-files - name: Run ruff linter - run: ruff check --output-format=full --show-fixes --exit-non-zero-on-fix . + run: ruff check --output-format=github --show-fixes --exit-non-zero-on-fix . - name: Run ruff formatter run: ruff format --diff . diff --git a/changes/300.internal.md b/changes/300.internal.md index e9754f3a..eb170396 100644 --- a/changes/300.internal.md +++ b/changes/300.internal.md @@ -2,3 +2,4 @@ - Update to use python 3.12 (in validation and as one of the matrix versions in unit-tests workflow) - Trigger and run lint and unit-tests workflows form a single main CI workflow. - Only send status embed after the main CI workflow finishes (not for both unit-tests and validation) +- Use `--output-format=github` for `ruff check` in the validation workflow