We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5a162f4 + 1c7f926 commit d305db0Copy full SHA for d305db0
Makefile
@@ -390,7 +390,13 @@ format-check: ## Check that files are properly formatted.
390
exit_code=0; \
391
if [ -n "$$(git diff)" ]; then \
392
>&2 echo "Some files need to be formatted. Please run 'make format' and try again."; \
393
+ if [ "$(OUTPUT_FORMAT)" == "github" ]; then \
394
+ echo "::group::git diff"; \
395
+ fi; \
396
git --no-pager diff; \
397
398
+ echo "::endgroup::"; \
399
400
exit_code=1; \
401
fi; \
402
git restore .; \
0 commit comments