Skip to content

Commit

Permalink
chore: show diffs when there is a problem
Browse files Browse the repository at this point in the history
  • Loading branch information
leovct committed Nov 20, 2023
1 parent c3684e9 commit 041f4af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
run: |
if [[ -n $(git status --porcelain) ]]; then
echo "❌ Error: Documentation is not up to date. Please run \`make gen-doc\`."
git diff
exit 1
else
echo "✅ The documentation is up to date."
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/go-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:
run: |
if [[ -n $(git status --porcelain) ]]; then
echo "❌ Error: Go bindings are not up to date. Please run \`make gen-go-bindings\`."
git diff
exit 1
else
echo "✅ The go bindings are up to date."
Expand Down

0 comments on commit 041f4af

Please sign in to comment.