Skip to content

Commit

Permalink
Check if tasks are up-to-date as well
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsauter committed Mar 3, 2023
1 parent 4cac16c commit 61bda72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check-docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
set -eu

make docs
if ! git diff --quiet docs; then
echo "Docs are not up-to-date! Run 'make docs' to update."
if ! git diff --quiet docs tasks; then
echo "Docs / tasks are not up-to-date! Run 'make docs' to update."
exit 1
else
echo "Docs are up-to-date."
echo "Docs /tasks are up-to-date."
fi

0 comments on commit 61bda72

Please sign in to comment.