add make check

This commit is contained in:
Frédéric Mangano-Tarumi 2018-10-27 20:30:11 -04:00
parent 7cf478c9cc
commit 5dcf9ec543
2 changed files with 8 additions and 0 deletions

View File

@ -18,6 +18,9 @@ Stay objective in your changes. Adding a feature or fixing a bug is a clear
improvement, but stylistic changes like renaming a function or moving a few
braces around won't help the project move forward.
You should check that your changes don't break the test suite by running
`make check`
Following these practices is important to keep the history clean, and to allow
for better code reviews.

View File

@ -21,3 +21,8 @@ uninstall:
clean:
rm -f opustags opustags.1.gz
check: opustags
prove
.PHONY: all man install uninstall clean check